{% trans_default_domain "admin" %} {% if config.form is not empty %} {{ form_start(config.form) }} {{ form_errors(config.form) }} {% if config.form.vars.grouping is defined and config.form.vars.grouping is not empty %} {% for label, groups in config.form.vars.grouping %} {% set isLast = (loop.index == config.form.vars.grouping|length) %}

{{ label|trans }}

{% for child in groups %} {{ form_row(attribute(config.form, child)) }} {% endfor %}
{% if isLast %} {% endif %}
{% endfor %} {% else %}
{% for child in config.form.children %} {{ form_row(child) }} {% endfor %}
{% endif %} {{ form_end(config.form) }} {% endif %}