• {{ form_errors(form.name) }}
    {{ form_label(form.name, 'Nom / Prénom* :') }} {{ form_widget(form.name, {'attr': {'class': 'text_input', 'tabindex': 1}}) }}
  • {{ form_errors(form.email) }}
    {{ form_label(form.email, 'Adresse email* :') }} {{ form_widget(form.email, {'attr': {'class': 'text_input', 'tabindex': 2}}) }}
  • {{ form_errors(form.phone) }}
    {{ form_label(form.phone, 'Numéro de tél. :') }} {{ form_widget(form.phone, {'attr': {'class': 'text_input', 'tabindex': 3}}) }}
  • {{ form_errors(form.message) }}
    {{ form_label(form.message, 'Message* :') }} {{ form_widget(form.message, {'attr': {'cols': '60', 'rows': '9', 'class': 'text_input', 'tabindex': 4}}) }}
  • {{ form_rest(form) }}