{% import "macros/alerts.html" as alerts %} {% import "macros/buttons.html" as buttons %} {% import "macros/forms.html" as forms %} {% extends "auth/dashboard/layout.html" %} {% block head_title_content %}{{ _("Password") }}{% endblock %} {% block content %}

{{ _("Change password") }}

{% if success %} {% call alerts.success() %} {{ success }} {% endcall %} {% endif %} {{ forms.form_field(form.old_password) }} {{ forms.form_field(form.new_password) }} {{ forms.form_field(form.new_password_confirm) }} {{ forms.form_csrf_token(form) }} {% call buttons.submit('btn') %} {{ _("Change password") }} {% endcall %}
{% endblock %}