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

Reset Password

Enter your new password below

{# Success Alert #} {% if flash.success is defined %}
{{ flash.success }}
{% endif %} {# Error Alert #} {% if flash.error is defined %}
{{ flash.error }}
{% endif %} {# Reset Password Form #}
{{ csrf_field() }} {# Hidden token field #} {# Password Field #}

Minimum 8 characters

{# Confirm Password Field #}
{# Password Strength Indicator #}

Password Requirements:

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