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

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

@lang('auth.Enter your email to receive instructions')

@if (session('status'))

{{ session('status') }}

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

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

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