19 lines
795 B
Twig
19 lines
795 B
Twig
{% extends "@admin/forms/user.html.twig" %}
|
|
|
|
{% block user_form %}
|
|
{% include "forms/partials/input-user-user_name.html.twig" with { 'col_width': 'col-sm-6' } %}
|
|
|
|
{% include "forms/partials/input-user-group.html.twig" with { 'col_width': 'col-sm-6' } %}
|
|
|
|
{% include "forms/partials/input-user-name.html.twig" with { 'col_width': 'col-sm-12' } %}
|
|
|
|
{% include "forms/partials/input-user-email.html.twig" with { 'col_width': 'col-sm-6' } %}
|
|
|
|
{% include "forms/partials/input-user-theme.html.twig" with { 'col_width': 'col-sm-6' } %}
|
|
|
|
{% include "forms/partials/input-user-locale.html.twig" with { 'col_width': 'col-sm-6' } %}
|
|
|
|
{% if 'password' not in form.fields.hidden %}
|
|
{% include "forms/partials/user-set-password.html.twig" %}
|
|
{% endif %}
|
|
{% endblock %} |