{#
#} {{ form_start(form, { attr: { class: 'consultationcontact-form' } }) }}
{{ form_label(form.profil, 'Votre profil *') }} {{ form_widget(form.profil, { attr: { class: 'form-control', id: 'profil' } }) }} {{ form_errors(form.profil) }}
{{ form_label(form.situation, 'Type de situation *') }} {{ form_widget(form.situation, { attr: { class: 'form-control', id: 'situation' } }) }} {{ form_errors(form.situation) }}
{{ form_label(form.nom, 'Nom et prénom *') }} {{ form_widget(form.nom, { attr: { class: 'form-control', id: 'nom' } }) }} {{ form_errors(form.nom) }}
{{ form_label(form.email, 'Email *') }} {{ form_widget(form.email, { attr: { class: 'form-control', id: 'nom' } }) }} {{ form_errors(form.email) }}
{{ form_label(form.telephone, 'Téléphone *') }} {{ form_widget(form.telephone, { attr: { class: 'form-control', id: 'telephone' } }) }} {{ form_errors(form.telephone) }}
{{ form_label(form.ville, 'Ville du bien') }} {{ form_widget(form.ville, { attr: { class: 'form-control', id: 'ville', placeholder: 'Ex: Toulouse, Muret, Pamiers...' } }) }} {{ form_errors(form.ville) }}
{{ form_label(form.message, 'Description de votre situation') }} {{ form_widget(form.message, { attr: { class: 'form-control', id: 'message', placeholder: 'Décrivez brièvement votre problématique...' } }) }} {{ form_errors(form.message) }}
{{ form_end(form) }}