{{ 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'}}) }}