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() }}
|
|
|
|
|
2020-11-24 17:27:21 +01:00
|
|
|
{{ f.input('password', __('Password'), 'password', {'min': min_length, 'required': true}) }}
|
|
|
|
{{ f.input('password_confirmation', __('Confirm password'), 'password', {'min': 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 %}
|