{% extends '/layout/admin_layout.html.twig' %}
{% block title %}Edit {{ target.singular }}{% endblock %}
{% block content %}
{% set header = null %}
{{ include('user/_form.html.twig', {'button_label': 'Update'}) }}
{% set header = 'Set new password' %}
{{ include('user/_password_form.html.twig', {'button_label': 'Update', 'form': passwordForm}) }}
{% endblock %}