{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger " role="alert">{{ flash_error }}</div>
{% endfor %}
{{ form_start(requestForm) }}
<div class="text-center">
{{ 'Pages.ForgotPassword.Alert.InfoEnterEmailAdressAndSendEmailWithLink'|trans({}, 'messages_front') }}
</div>
<div class="form-group">
{{ form_row(requestForm.email) }}
</div>
<div class="common_form_submit">
<button class="btn btn_theme btn_md">{{ 'Pages.ForgotPassword.Buttons.Send'|trans({}, 'messages_front') }}</button>
</div>
{{ form_end(requestForm) }}