@extends('layouts.auth') @section('page-title') {{ __('Reset Password') }} @endsection @push('custom-scripts') @if(env('RECAPTCHA_MODULE') == 'on') {!! NoCaptcha::renderJs() !!} @endif @endpush @section('auth-topbar') @endsection @section('content')

{{__('Reset Password')}}

@if(session('status'))

{{ session('status') }}

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

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

@endsection