{% extends 'layout.html.twig' %} {% block content %} {% include '_partials/_flashes.html.twig' %} {{ form_start(form) }} {% if not form.vars.valid %} {% include '_partials/_alert.html.twig' with { 'level': 'error', 'title': 'Die Buchung konnte nicht aktualisiert werden' } %} {% for child in form.participants.children %} {% if not child.vars.valid %} {% set participant = child.vars.data %} {% set messages = [] %} {% for field in child.children %} {% for error in field.vars.errors %} {% set messages = messages|merge([field.vars.label ~ ': ' ~ error.message]) %} {% endfor %} {% endfor %} {% include '_partials/_alert.html.twig' with { 'level': 'error', 'title': 'Teilnehmer:in ' ~ (participant.index + 1) ~ ':' ~ participant.firstName ~ participant.lastName, 'messages': messages } %} {% endif %} {% endfor %} {% endif %}