{% trans_default_domain 'FOSUserBundle' %}

Mon Profile

{{ form_start(form, { 'action': path('fos_user_profile_edit'), 'attr': { 'class': 'fos_user_profile_edit' } }) }}
Account Info
{{ form_widget(form.nom,{'attr': {'class': 'form-control','placeholder':'votre nom'}}) }} {% if form.nom.vars.errors|length > 0 %}
{{ form_errors(form.nom) }}
{% endif %}
{{ form_widget(form.prenom,{'attr': {'class': 'form-control','placeholder':'votre prénom'}}) }} {% if form.prenom.vars.errors|length > 0 %}
{{ form_errors(form.prenom) }}
{% endif %}
{{ form_widget(form.email,{'attr': {'class': 'form-control','placeholder':'votre Email'}}) }} {% if form.email.vars.errors|length > 0 %}
{{ form_errors(form.email) }}
{% endif %}
{{ form_widget(form.metier,{'attr': {'class': 'form-control','placeholder':'votre Function'}}) }} {% if form.metier.vars.errors|length > 0 %}
{{ form_errors(form.metier) }}
{% endif %}
{{ form_widget(form.civility) }} {% if form.civility.vars.errors|length > 0 %}
{{ form_errors(form.civility) }}
{% endif %}
{% if app.user.path is empty %} Admin Total {% else %} Admin Total {% endif %}
Select image Change {{ form_widget(form.picture) }} Remove
Required Fields

By clicking UPDATE, you are agreeing to the Policy and Terms & Conditions.

{{ form_end(form) }}