{% extends "@admin/forms/user.html.twig" %} {% block user_form %} {% if 'user_name' not in form.fields.hidden %}
{% include "forms/partials/input-user-user_name.html.twig" %}
{% endif %} {% if 'group' not in form.fields.hidden %}
{% include "forms/partials/input-user-group.html.twig" %}
{% endif %} {% if 'name' not in form.fields.hidden %}
{% include "forms/partials/input-user-first_name.html.twig" %}
{% include "forms/partials/input-user-last_name.html.twig" %}
{% endif %} {% if 'email' not in form.fields.hidden %}
{% include "forms/partials/input-user-email.html.twig" %}
{% endif %} {% if 'theme' not in form.fields.hidden %}
{% include "forms/partials/input-user-theme.html.twig" %}
{% endif %} {% if 'locale' not in form.fields.hidden %}
{% include "forms/partials/input-user-locale.html.twig" %}
{% endif %} {% if 'password' not in form.fields.hidden %} {% include "forms/partials/user-set-password.html.twig" %} {% endif %} {% endblock %}