{# #} {{ form_start(form, {"attr": {"class":"validation-wizard wizard-circle"}}) }}
Information Personnelle
{{ form_label(form.nom, 'Nom : ') }} {{ form_widget(form.nom, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.postnom, 'Postnom : ') }} {{ form_widget(form.postnom, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.prenom, 'Prenom : ') }} {{ form_widget(form.prenom, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.sexe, 'Sexe : ') }} {{ form_widget(form.sexe, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.phone, 'Telephone : ') }} {{ form_widget(form.phone, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.email, 'Email : ') }} {{ form_widget(form.email, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.adresse, 'Adresse : ') }} {{ form_widget(form.adresse, {'attr': {'class': 'form-control'}}) }}
{# ... autres champs Personnel ... #}
{{ form_end(form) }}