{% extends '@RapsysBlog/_base.html.twig' %} {% block content %}

{{ title }}

{{ description }}

{% if sent is defined and sent %}

{% trans %}Your message has been sent{% endtrans %}

{% else %} {{ form_start(contact) }} {{ form_row(contact.subject) }} {{ form_row(contact.name) }} {{ form_row(contact.mail) }} {{ form_row(contact.message) }} {{ form_row(contact.captcha) }} {{ form_row(contact.submit) }} {# Render CSRF token etc .#}
{{ form_rest(contact) }}
{{ form_end(contact) }} {% endif %}
{% endblock %}