@extends('theme::layouts.app', ['title' => __('auth.Reset Password')]) @section('content')

@lang('auth.heading|Reset Password')

@lang('auth.Create a new password for your account')

@csrf
mail
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
lock
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
lock_reset
@if ($errors->has('password_confirmation'))

{{ $errors->first('password_confirmation') }}

@endif
@include('theme::partials.recaptcha', ['formId' => 'password-reset-form', 'action' => 'password_reset_confirm'])
@endsection