{% extends 'frontend/base.html.twig' %}{% form_theme form 'bootstrap_4_horizontal_layout.html.twig' %}{% block pageTitle %}Adressänderung{% endblock %}{% block pageDescription %}{% endblock %}{% block contentArea %}<div class="row"><div class="col-lg-8 col-12 mb-lg-0 mb-5"><h1>Adressänderung</h1>{% if mailSendMessage %}<p>{{ mailSendMessage|nl2br }}</p>{% else %}{% if content.is_visible_on_frontend and content.content_html %}<p class="mb-4">{{ content.content_html|raw }}</p>{% endif %}{{ form_start(form, {'attr':{'class':'form-abo'}}) }}{{ form_row(form.datumAb, {'attr':{'style':'width:160px', 'class':'jqBootstrapDatePicker'}}) }}<h5>Bisherige Adresse</h5>{{ form_row(form.vorname) }}{{ form_row(form.nachname) }}{{ form_row(form.firma) }}{{ form_row(form.strasse) }}{{ form_row(form.plz) }}{{ form_row(form.ort) }}{{ form_row(form.land) }}{{ form_row(form.telefon) }}{{ form_row(form.email) }}<br>{{ form_row(form.mitteilung) }}<h5>Neue Adresse</h5>{{ form_row(form.altVorname) }}{{ form_row(form.altNachname) }}{{ form_row(form.altFirma) }}{{ form_row(form.altStrasse) }}{{ form_row(form.altPlz) }}{{ form_row(form.altOrt) }}{{ form_row(form.altLand) }}{{ form_row(form.altTelefon) }}{{ form_row(form.altEmail) }}<h5>Datenschutz</h5>{{ form_row(form.datenschutz) }}<br><button type="submit" class="btn btn-primary btn-sm">Senden</button> <a href="{{ path('fe.abo') }}" class="btn btn-link btn-sm">Abbrechen</a>{{ form_end(form) }}{% endif %}</div><div class="col-lg-4 col-12">{{ include('frontend/_partials/_right_col_full.html.twig') }}</div></div>{% endblock %}