16 lines
412 B
Twig
16 lines
412 B
Twig
{{ form_start(form) }}
|
|
<div class="flex flex-col space-y-4 pb-8">
|
|
{{ form_row(form.question) }}
|
|
{{ form_row(form.answer) }}
|
|
</div>
|
|
<div class="flex items-center space-x-2">
|
|
<button type="submit" class="btn">
|
|
Speichern
|
|
</button>
|
|
<a href="{{ path('app_admin_system_faq_index') }}" class="btn btn--secondary">
|
|
Abbrechen
|
|
</a>
|
|
</div>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|