@extends('layouts.auth') @php use App\Models\Utility; $logo = asset(Storage::url('uploads/logo/')); $company_logo = App\Models\Utility::getValByName('company_logo'); $settings = Utility::settings(); @endphp @section('page-title') {{ __('Forgot Password') }} @endsection @section('auth-lang') @php $languages = App\Models\Utility::languages(); @endphp
@endsection @section('content')

{{ __('Forgot Password') }}

{{ __('We will send a link to reset your password') }} @if (session('status')) {{ session('status') }} @endif
@csrf
@error('email') {{ $message }} @enderror
@if ($settings['recaptcha_module'] == 'yes') @if (isset($settings['google_recaptcha_version']) && $settings['google_recaptcha_version'] == 'v2-checkbox')
{!! NoCaptcha::display($settings['cust_darklayout'] == 'on' ? ['data-theme' => 'dark'] : []) !!} @error('g-recaptcha-response') {{ $message }} @enderror
@else
@error('g-recaptcha-response') {{ $message }} @enderror
@endif @endif

{{ __('Back to') }} {{ __('Login') }}

{{ Form::close() }} @endsection @push('custom-scripts') {{-- @if ($settings['recaptcha_module'] == 'yes') {!! NoCaptcha::renderJs() !!} @endif --}} @if (isset($settings['recaptcha_module']) && $settings['recaptcha_module'] == 'yes') @if (isset($settings['google_recaptcha_version']) && $settings['google_recaptcha_version'] == 'v2-checkbox') {!! NoCaptcha::renderJs() !!} @else @endif @endif @endpush