10 lines
205 B
Twig
10 lines
205 B
Twig
{{ form_start(form) }}
|
|
<div class="flex flex-col space-y-4 pb-8">
|
|
{{ form_row(form.name) }}
|
|
</div>
|
|
<button type="submit" class="btn">
|
|
Speichern
|
|
</button>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|