{% extends 'layout/base.html.twig' %} {% form_theme form 'bootstrap_5_layout.html.twig' %} {% block body %} {% include 'components/layout/_title_3.html.twig' with { name: 'address.step1_action.title'|trans } %} {% include 'components/layout/_text.html.twig' with { text: 'address.step1_action.plaintext'|trans } %}
{{ form_start(form, { attr: { novalidate: true } }) }} {{ form_row(form.address) }} {{ form_row(form.addressSupplement) }} {{ form_row(form.postalCode) }} {{ form_row(form.locality) }} {{ form_row(form.country) }}
{{ form_widget(form.submit) }}
{{ form_end(form) }}
{% block step2 %}{% endblock %} {% endblock %} {% block link %}{% endblock %}