@extends('layouts.auth') @section('page-title') {{ __('Reset Password') }} @endsection @push('custom-scripts') @if(env('RECAPTCHA_MODULE') == 'on') {!! NoCaptcha::renderJs() !!} @endif @endpush @if (Session::has('success'))
@endif @if (Session::has('smpterrors'))
@endif @section('content') @php $logo=\App\Models\Utility::get_file('uploads/logo'); $logo_dark = \App\Models\Utility::getValByName('logo_dark'); @endphp
@if(session('status'))

{{ session('status') }}

@endif
@csrf

{{__('Reset Password')}}

{{__('Reset Password Subheader')}}

@error('email') {{ $message }} @enderror
@if(env('RECAPTCHA_MODULE') == 'on')
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{ $message }} @enderror
@endif

{{__("Back to")}} {{__('Sign In')}}

@endsection