{% extends "base.html" %} {% import "components/typography.html" as typography %} {% import "components/cards.html" as cards %} o{% import "components/inputs.html" as form_helpers %} {% block main %} {{ typography::heading("New User") }} {% call cards::card() %}
{{ form_helpers::input("name", "Name", is_required = true, placeholder = "Ex: Kropotkine", margin_bottom = false) }}
{% endcall %} {% endblock %}