{# # Forgot Password Page #} {% extends 'auth/base-auth.twig' %} {% set title = 'Forgot Password' %} {% block content %} {# Logo and Title #}

Forgot Password?

No worries, we'll send you reset instructions

{# Error Alert #} {% if flash.error is defined %}
{{ flash.error }}
{% endif %} {# Success Alert #} {% if flash.success is defined %}
{{ flash.success }}
{% endif %} {# Forgot Password Form #}
{{ csrf_field() }} {# Email Field #}

Enter the email associated with your account

{# CAPTCHA Widget #} {% include 'auth/_captcha-widget.twig' %} {# Submit Button #}
{# Back to Login Link #}
Back to Login
{% endblock %}