{% extends "_market/_layouts/main" %} {% set title = 'Password'|t('market') %} {% set breadcrumbs = [ { url: url('market/settings'), label: 'Settings'|t('market') }, { url: url('market/settings/password'), label: title } ] %} {% block main %} {% set user = user ?? currentUser %}
{% include '_market/settings/_nav.html' %}
{{ csrfInput() }} {{ actionInput('users/save-user') }} {{ hiddenInput('userId', user.id) }} {{ hiddenInput('successMessage', 'Password changed.'|hash) }} {{ hiddenInput('failMessage', 'Couldn’t change password.'|hash) }}

Change your password

Please remember to use a secure password that is unique to this account.

{# New Password #} {% set newPasswordErrors = user.getErrors('newPassword') %}
{% if newPasswordErrors %}
{# Heroicon name: solid/exclamation-circle #}
{% endif %}
{% for error in newPasswordErrors %}

{{ error }}

{% endfor %}
{# Current Password #} {% set passwordErrors = user.getErrors('currentPassword') %}
{% if passwordErrors %}
{# Heroicon name: solid/exclamation-circle #}
{% endif %}
{% for error in passwordErrors %}

{{ error }}

{% endfor %}
{% endblock %}