{% extends 'layout.html.twig' %} {% block content %} {{ form_start(form) }} {% if not form.vars.valid %}
Fehler
{{ form_errors(form) }}
{% endif %}
Reisedaten

Destination

{{ bookingData.travel }}

Reisedatum

{{ bookingData.travelDate|date('d.m.Y') }}

Buchungsdatum

{{ bookingData.bookingDate|date('d.m.Y') }}

Inklusivleistungen

    {% for selectionGroup in travelData.includedServices %} {% for service in selectionGroup.selections %}
  • {{ service.label }}
  • {% endfor %} {% endfor %}
{% for child in form.participants %} {% set participant = child.vars.data %}
Teilnehmer:in {{ participant.index }}: {{ participant.firstName }} {{ participant.lastName }}
{% endfor %}
zurück
{{ form_rest(form) }} {{ form_end(form) }} {% endblock %}