{% extends 'layout/base.html.twig' %} {% form_theme form 'bootstrap_5_layout.html.twig' %} {% set i18n_prefix = _self|i18n_prefix %} {% block body %}
{% include 'components/layout/_title_3.html.twig' with { name: (i18n_prefix ~ '.title')|trans } %}
{{ form_start(form, { attr: { novalidate: true, } }) }} {{ form_row(form.oldPassword) }} {% include 'components/form/_password_visibility.html.twig' with { form: form.plainPassword.first } %} {% include 'components/form/_password_visibility.html.twig' with { form: form.plainPassword.second } %}
{{ form_widget(form.submit) }}
{{ form_end(form) }}
{% endblock %} {% block link %}{% endblock %}