{% extends "pages/password/reset.twig" %} {% import 'macros/base.twig' as m %} {% import 'macros/form.twig' as f %} {% block row_content %}
{{ csrf() }} {{ f.input('password', __('Password'), { 'type': 'password', 'min_length': min_length, 'required': true, }) }} {{ f.input('password_confirmation', __('Confirm password'), { 'type': 'password', 'min_length': min_length, 'required': true, }) }} {{ f.submit(__('Save')) }}
{% endblock %}