{% extends 'include/base.html.twig' %} {% block body %}
{% include 'include/header.html.twig' %}

Contact

{% include 'include/_flash_message.html.twig' %} {{ form_start(form) }}
{{ form_row(form.firstname) }}
{{ form_row(form.lastname) }}
{{ form_row(form.email) }}
{{ form_row(form.subject) }}
{{ form_row(form.message) }}
{{ form_row(form.captcha) }}
{{ form_end(form) }}
{% include 'include/footer.html.twig' %}
{% endblock %}