{% extends '@default/base.html.twig' %} {% block title %} Profile of {{ user.username }} {% endblock %} {% block body %}
{{ form_start(userForm) }}
{# {% if user.avatar is not null %} profile image {% endif %} #}
{{ user.username }} {{ user.email }}

User Profile

{{ form_row(userForm.username) }} {{ form_row(userForm.firstName) }} {{ form_row(userForm.lastName) }} {{ form_row(userForm.email) }} {{ form_row(userForm.newPassword.first) }} {{ form_row(userForm.newPassword.second) }} {{ form_rest(userForm) }}
{{ form_end(userForm) }}
{% endblock %}