{% extends 'layout.html.twig' %} {% set seo_title = 'Change Password' %} {% block content %}

Change Password

{{ form_start(form, {'attr': {'class': 'account-details'}}) }}
{% include '_includes/flash-messages.html.twig' %} {{ form_row(form.currentPassword) }} {{ form_row(form.plainPassword) }}
Cancel
{{ form_end(form) }}
{% endblock %}