{% extends '@SyliusShop/layout.html.twig' %} {% form_theme form '@SyliusShop/Form/theme.html.twig' %} {% block title %} {{ 'sylius.ui.reset_password'|trans }} | {{ parent() }} {% endblock %} {% 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': 'ui large loadable form', 'novalidate': 'novalidate'}}) }} {{ form_row(form.password.first, sylius_test_form_attribute('password-reset-new')|merge({'label': 'sylius.form.user_reset_password.new'|trans})) }} {{ form_row(form.password.second, sylius_test_form_attribute('password-reset-confirmation')|merge({'label': 'sylius.form.user_reset_password.confirmation'|trans})) }} {{ form_row(form._token) }} {{ form_end(form, {'render_rest': false}) }}
{% endblock %}