{% extends 'backend/base.html.twig' %} {% block title %}Profil{% endblock %} {% block breadcrumb %}

Paramètres du compte

{% endblock %} {% block content %}
{#{% if is_granted("ROLE_ADMIN") %} Profil - Espace Abonné {% elseif is_granted("ROLE_USER") %} Profil - Espace Collaborateur {% endif %}#} {#{ dump(user) }#}
User profile picture

{{ user.name }}

{{ user.company.name }}

{% for message in app.flashes('success') %}

{{ message }}


{% endfor %}
{{ form_start(form, {'attr': {'class': 'form-horizontal'}}) }} {{ form_row(form.username, {'attr': {'class': 'form-control', 'readonly': 'readonly'}}) }} {#{ form_label(form.name, {'attr': {'class': 'col-sm-2 col-form-label'}}) }#} {{ form_row(form.name, {'attr': {'class': 'form-control', 'readonly': 'readonly'}}) }} {{ form_row(form.gsm, {'attr': {'class': 'form-control', 'readonly': 'readonly'}}) }}
{{ form_row(form.address, {'attr': {'class': 'form-control', 'readonly': 'readonly'}}) }}
{#{% if is_granted("ROLE_USER") %} #}{#{ form_row(form.is_allowed_send_dcp, {'attr': {'class': 'form-control', 'readonly': 'readonly'}}) }#}{#
{{ form_label(form.is_allowed_send_dcp) }}{{ form_widget(form.is_allowed_send_dcp) }}
{% endif %}#} {{ form_rest(form) }} {#
#} {{ form_end(form) }}
{% endblock %}