I want to provide a form for the user to upload a picture. Following the documentation I wrote the following header:
title: Images
form:
name: uploadImages
fields:
type: file
multiple: false
destination: '@self'
accept:
- 'image/*'
buttons:
-
type: submit
value: Submit
The the field to upload images and the submit button show correctly but if I press submit the image is not uploaded to location @self. Am I missing a process instruction or is the image uploaded to another place?
Thanks for your help.
Grimm.