{% extends '@SyliusShop/layout_custom.html.twig' %} {% form_theme form '@SyliusShop/Form/theme.html.twig' %} {% block title %}{{ 'sylius.ui.reset_password'|trans }} | {{ parent() }}{% endblock %} {% import '@SyliusShop/Common/Macro/headers.html.twig' as headers %} {% block content %}

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

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

{{ form_start(form, {'action': path('sylius_shop_password_reset', {'token': user.passwordResetToken}), 'attr': {'class': 'loadable', 'novalidate': 'novalidate'}}) }} {{ form_row(form.password.first, {'label': 'sylius.form.user_reset_password.new'|trans}) }} {{ form_row(form.password.second, {'label': 'sylius.form.user_reset_password.confirmation'|trans}) }} {{ form_row(form._token) }} {{ form_end(form, {'render_rest': false}) }}
{% endblock %}