@php use App\Helpers\Helper;$configData = Helper::applClasses(); @endphp @extends('layouts/fullLayoutMaster') @section('title', __('locale.auth.forgot_password')) @section('page-style') {{-- Page Css files --}} @if(config('no-captcha.login')) {!! RecaptchaV3::initJs() !!} @endif @endsection @section('content')
@if($configData['theme'] === 'dark') {{config('app.name')}} @else {{config('app.name')}} @endif

{{ __('locale.auth.recover_your_password') }}

{{ __('locale.auth.recover_password_instructions') }}

@csrf
@error('email') {{ $message }} @enderror
@if(config('no-captcha.login'))
{!! RecaptchaV3::field('email') !!}
@endif

{{ __('locale.auth.back_to_login') }}

@endsection