{% extends 'layout_booking.html.twig' %} {% block content %} {{ form_start(form, { 'attr': { 'class': 'flex-1 flex flex-col min-h-0', 'novalidate': 'novalidate' } }) }} {# Pagination - mobile only (above form) #}
{% include 'booking/_pagination.html.twig' with { 'current_step': 2 } %}
{# Summary - hidden on mobile, visible on desktop #} {# Form area - full width mobile, 3 cols desktop #}
{# Pagination - desktop only (fixed above scrollable content) #}
{# Flash messages - must be inside main-content for HTMX swap to display them #} {% include '_partials/_flashes.html.twig' %} {% include 'booking/_participant_form.html.twig' with { 'bookingCreateContext': bookingCreateContext, 'bookingDto': bookingCreateContext.bookingDto, 'summaryData': bookingCreateContext.summaryData } %}
Zurück
{{ form_rest(form) }} {{ form_end(form) }} {% endblock %}