{% extends '@RapsysAir/body.html.twig' %} {% block content %}

{% trans %}Recover{% endtrans %}

{% if sent %}

{% trans %}Your password is updated and an account recover message has been sent{% endtrans %}

{% elseif not found %}

{% trans %}Unable to find account{% endtrans %}

{% else %}
{{ form_start(form) }}
{{ form_row(form.password) }}
{{ form_row(form.submit) }} {# Render CSRF token etc .#} {{ form_end(form) }}
{% endif %}
{% endblock %}