{% 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 %}{{ _("Profile") }}{% endblock %} {% block content %}

{{ _("Profile") }}

{{ _("Email") }}

{{ _("Manage your email address to receive important updates and notifications.") }}
{{ user.email }}
{% if form.fields.form._fields | length > 0 %}

{{ _("Profile information") }}

{{ _("Manage your profile information.") }}
{% if success %} {% call alerts.success() %} {{ success }} {% endcall %} {% endif %} {% for field in form.fields %} {{ forms.form_field(field) }} {% endfor %} {{ forms.form_csrf_token(form) }} {% call buttons.submit('btn') %} {{ _("Update profile") }} {% endcall %}
{% endif %} {% endblock %}