{% import 'shared/componnents/_macros/_forms.html.twig' as forms %} {% import 'shared/componnents/_macros/_alerts.html.twig' as alerts %} {% set path = path ?? null %} {% set path_list = path_list ?? null %} {% set label_btn = label_btn ?? '' %} {% set title = title ?? '' %}

{{ title }}

{% for message in app.flashes('success') %} {{ alerts.alert(message, 'success', 'check') }} {% endfor %}
{{ form_widget(form._token) }}
{{ form_label(form.standard.name) }} {{ form_widget(form.standard.name) }}
{{ form_label(form.maxPerson) }} {{ form_widget(form.maxPerson) }}
{{ form_label(form.code) }} {{ form_widget(form.code) }}
{{ form_label(form.minPerson) }} {{ form_widget(form.minPerson) }}
{{ form_label(form.maxAdult) }} {{ form_widget(form.maxAdult) }}
{{ form_label(form.maxChild) }} {{ form_widget(form.maxChild) }}
{{ form_label(form.minAdult) }} {{ form_widget(form.minAdult) }}
{{ form_label(form.minChild) }} {{ form_widget(form.minChild) }}
{{ form_label(form.standard.status) }} {{ form_widget(form.standard.status) }}