
{% extends "base.html.twig" %}

{% block title %}{% if user.id %}Edytuj {{ user.username }}{% else %}Dodaj użytkownika{% endif %} - {{ setting('title') }}{% endblock %}

{% block content %}
<hgroup class="page-header">
	<h1><i class="fas fa-user"></i> {% if user.id %}Edytuj {{ user.username }}{% else %}Dodaj użytkownika{% endif %}</h1>
	<p><a href="{{ path('user_list') }}" title="Użytkownicy">Powrót do listy użytkowników</a></p>
</hgroup>

{% include 'partial/alert.html.twig' %}

{{ form(form) }}

{% endblock %}
