{% extends '@SyliusShop/Account/layout.html.twig' %} {% form_theme form '@SyliusShop/Form/theme.html.twig' %} {% block breadcrumb %}

{{ 'sylius.ui.personal_information'|trans }}

{% endblock %} {% block subcontent %}

{{ 'sylius.ui.change_password'|trans }}

{{ 'sylius.ui.set_a_new_password_for_your_account'|trans }}

{{ form_start(form, {'action': path('sylius_shop_account_change_password'), 'attr': {'class': 'text-center', 'novalidate': 'novalidate'}}) }} {{ sylius_template_event('sylius.shop.account.change_password.after_content_header', {'form': form}) }}
{{ form_widget(form.currentPassword, {'attr' : {'class' : 'w-100', 'placeholder' : form.currentPassword.vars.label}}) }}
{{ form_widget(form.newPassword.first, {'attr' : {'class' : 'w-100', 'placeholder' : form.newPassword.first.vars.label}}) }}
{{ form_widget(form.newPassword.second, {'attr' : {'class' : 'w-100', 'placeholder' : form.newPassword.second.vars.label}}) }}
{{ sylius_template_event('sylius.shop.account.change_password.form', {'form': form}) }} {{ form_row(form._token) }} {{ form_end(form, {'render_rest': false}) }}
{% endblock %}