2019-10-08 16:17:06 +02:00
|
|
|
{% extends "pages/password/reset.twig" %}
|
|
|
|
{% import 'macros/base.twig' as m %}
|
|
|
|
{% import 'macros/form.twig' as f %}
|
|
|
|
|
|
|
|
{% block row_content %}
|
|
|
|
<div class="col-md-8">
|
|
|
|
<form action="" enctype="multipart/form-data" method="post">
|
|
|
|
{{ csrf() }}
|
|
|
|
|
2023-04-19 22:34:08 +02:00
|
|
|
{{ 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,
|
|
|
|
}) }}
|
2019-10-08 16:17:06 +02:00
|
|
|
|
2021-07-24 18:19:53 +02:00
|
|
|
{{ f.submit(__('Save')) }}
|
2019-10-08 16:17:06 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|