@extends('layouts.auth') @section('content')

@lang('title.reset_password')

@if (session('status')) @endif @if ($errors->has('email') || $errors->has('password'))
{{ $errors->first('email') }} {{ $errors->first('password') }}
@endif

@lang('message.enter_new_password_for_user', ['email' => $email])

@csrf @include('fragments.form.element.preset.password', [ 'attributes' => [ 'autofocus' => true ] ]) @include('fragments.form.element.preset.password', [ 'confirm' => true ])
@endsection