{% extends 'layouts/app.twig' %} {% import 'macros/base.twig' as m %} {% import 'macros/form.twig' as f %} {% block title %}{{ __('Password recovery') }}{% endblock %} {% block content %}

{{ __('Password recovery') }}

{% for message in errors|default([]) %} {{ m.alert(__(message), 'danger') }} {% endfor %}
{% block row_content %}
{{ csrf() }} {{ __('We will send you an e-mail with a password recovery link. Please use the email address you used for registration.') }} {{ f.input('email', __('E-Mail'), 'email', {'required': true}) }}
{{ f.submit(__('Recover')) }}
{% endblock %}
{% endblock %}