{% extends 'layout/base.html.twig' %} {% block title %}{{ 'title.my_profile'|trans }}{% endblock %} {% block body %}

{{ 'title.my_profile'|trans }}

{% form_theme form 'bootstrap_4_layout.html.twig' %} {{ form_start(form) }} {{ form_row(form.full_name) }} {{ form_row(form.phone) }}
{{ form_end(form) }}
{{ include('user/common/_sidebar.html.twig') }} {{ include('user/common/_change_password.html.twig') }}
{% if is_granted('ROLE_ADMIN') %} {% elseif app.user.isVerified %} {% endif %} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('js/user') }} {{ encore_entry_script_tags('js/password') }} {% endblock %}