24 lines
654 B
Twig
24 lines
654 B
Twig
{{ form_start(form) }}
|
|
<div class="flex flex-col space-y-4 pb-4">
|
|
{{ form_row(form.name) }}
|
|
{{ form_row(form.email) }}
|
|
{{ form_row(form.destination) }}
|
|
<div>
|
|
<h4 class="font-bold pb-2">
|
|
Foto
|
|
</h4>
|
|
{% include '_partials/_upload_collection_form.html.twig' with {
|
|
'endpoint_upload': path('_uploader_upload_photo'),
|
|
'max_filesize': 5,
|
|
'max_files': 1,
|
|
'accepted_files': 'image/jpg,image/jpeg',
|
|
} %}
|
|
{{ form_errors(form) }}
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="btn">
|
|
speichern
|
|
</button>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|