{% extends '/admin/authenticated/layout/base.html.twig' %} {% import '/admin/components/helpers_macro.html.twig' as helpers %} {% set isEdit = false %} {% block title %} Create user {% endblock %} {% block content %} {{ helpers.notifications_success() }} {{ helpers.notifications_error() }} {{ helpers.notifications_warning() }}
{{ form_start(form) }} {# {{ form_start(form, { 'attr': {'novalidate': 'novalidate'} }) }}#}
Create user
{% include '/admin/authenticated/security/user/_form_fields.html.twig' %}
{{ form_end(form) }} {{ helpers.form_processing() }}
{% endblock %} {% block js %} {{ parent() }} {% endblock %}