{% extends 'teamer/layout.html.twig' %} {% block title %}Datenbestätigung{% endblock %} {% block content %} {{ form_start(form) }}

Datenbestätigung

Bitte prüfe, ob deine hinterlegten Daten noch aktuell sind, und bestätige sie.

{% if not form.vars.valid %} {% embed '_partials/_alert.html.twig' with { 'type': 'warning' } %} {% block message %} {% include '_partials/_form_errors.html.twig' with { 'form': form } %} {% endblock %} {% endembed %} {% endif %}
Name
{{ teamer.fullName }}
Geburtsdatum
{{ teamer.dateOfBirth ? teamer.dateOfBirth|date('d.m.Y') : '-' }}
Anschrift
{{ teamer.address.street|default('-') }}
{{ teamer.address.postCode|default('') }} {{ teamer.address.city|default('') }}
{{ teamer.address.country|default('') }}
Kontakt
{{ teamer.communication.email|default('-') }}
{{ teamer.communication.mobile|default('-') }}
{% if errors|length %} {% embed '_partials/_alert.html.twig' with { 'type': 'warning' } %} {% block message %} Einige Angaben in deinem Profil fehlen noch: Im Profil ergänzen {% endblock %} {% endembed %} {% endif %}

Stimmt etwas nicht? Daten im Profil ändern

{{ form_row(form.confirmed) }}
{{ form_rest(form) }} {{ form_end(form) }} {% endblock %}