25 lines
750 B
Twig
25 lines
750 B
Twig
{% extends 'htmx_modal_admin.html.twig' %}
|
|
{% form_theme form 'forms_admin.html.twig' %}
|
|
|
|
{% block content %}
|
|
<div class="text-xl font-bold pb-4">
|
|
Neues Gruppenhaus
|
|
</div>
|
|
{{ form_start(form) }}
|
|
<div class="grid lg:grid-cols-2 gap-y-4 lg:gap-x-8">
|
|
{{ form_row(form.name) }}
|
|
{{ form_row(form.currency) }}
|
|
{{ form_row(form.country) }}
|
|
{{ form_row(form.calendarCode) }}
|
|
{{ form_row(form.cmsCode) }}
|
|
{{ form_row(form.maxAdolescentAge) }}
|
|
</div>
|
|
<div class="flex justify-end pt-8">
|
|
<button type="submit" class="button button--primary button--small">
|
|
speichern
|
|
</button>
|
|
</div>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|