Upload from a form

Hi, I’m looking for the way to do this for a while now, and I don’t get it.
Is it possible to make a form with an upload field? Does anyone have an example?

thanks

Does this help: How to upload a file

tnx, but I don’t see clearly how to add this info to a form :frowning: any tips?
tnx

The form is configured in the page frontmatter/header of the page containing the form.
As an example of how to add the upload field to a form:

form:
    name: my-form
    fields:
        -
            name: images
            type: file
            multiple: true
            destination: '@self'
            accept:
                - 'image/*'

This will allow you to select and upload image files.
Screenshot at Mar 05 14-26-10

Thank you, this looks better, I’ll give it a try and get back to tell…tnx again.

ok, it’s working this way, thanks for your help!