{% extends 'layout_booking.html.twig' %} {% block content %} {{ form_start(form, { 'attr': { 'class': 'flex-1 flex flex-col min-h-0', 'novalidate': 'novalidate', 'hx-post': path(submitRouteName, submitRouteParams|default({index: participantIndex})), 'hx-target': '#main-content', 'hx-swap': 'innerHTML scroll:top' } }) }}
{# Summary - hidden on mobile, visible on desktop #} {# Form area - full width mobile, 3 cols desktop #}
{# Header - desktop only #}
{# Flash messages - must be inside main-content for HTMX swap to display them #} {% include '_partials/_flashes.html.twig' %} {% include 'booking/_participant_form.html.twig' %}
{{ form_rest(form) }} {{ form_end(form) }} {% endblock %}