{% extends "pages/password/reset.twig" %} {% import 'macros/base.twig' as m %} {% import 'macros/form.twig' as f %} {% block row_content %}
{{ csrf() }} {{ f.input('password', __('settings.password'), { 'type': 'password', 'min_length': min_length, 'required': true, 'info': __('password.minimal_length', [config('min_password_length')]), }) }} {{ f.input('password_confirmation', __('password.reset.confirm'), { 'type': 'password', 'min_length': min_length, 'required': true, }) }} {{ f.submit(__('form.save')) }}
{% endblock %}