@extends('layouts.auth') @section('title') {{__('Password reset')}} @endsection @php $logo = \App\Models\Utility::get_file('logo/'); $settings = \App\Models\Utility::settings(); config( [ 'captcha.secret' => isset($settings['google_recaptcha_secret']) ? $settings['google_recaptcha_secret'] :'', 'captcha.sitekey' => isset($settings['google_recaptcha_key']) ? $settings['google_recaptcha_key'] :'', 'options' => [ 'timeout' => 30, ], ] ); @endphp @push('custom-scripts') @if($settings['recaptcha_module'] == 'yes') {!! NoCaptcha::renderJs() !!} @endif @endpush @section('content')
{{__('Reset Password')}}
@csrf
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@if($settings['recaptcha_module'] == 'yes')
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{ $message }} @enderror
@endif
@endsection