{% extends 'front/base.html.twig' %} {% block title %}{{ contact_contents.contact_page_title.value|striptags }}{% endblock %} {% block body %} {% include "front/_nav.html.twig" %}
{{ contact_contents.contact_sidebar_title.value|striptags }}

{{ contact_contents.contact_title.value|raw }}

{% for type, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %}

{{ contact_contents.contact_text.value|raw }}

{{ form_start(form) }}
{{ form_row(form.name) }}
{{ form_row(form.firstname) }}
{{ form_row(form.age) }}
{{ form_row(form.email) }}
{{ form_row(form.telephone) }}
{{ form_row(form.commune) }}
{{ form_row(form.learningDifficulty) }}
{{ form_row(form.studyLevel) }}
{{ form_end(form) }}
{% endblock %}