@extends('admin.layouts.auth') @section('title', 'Reset Password') @section('content')

{{ __('Reset Password') }}

{{ __('Enter your email to reset your password') }}

@csrf
@if (session('status')) @endif
@if (getSetting('captcha_admin')) @if (getSetting('captcha') == 'hcaptcha' && isPluginEnabled('hcaptcha'))
{!! HCaptcha::script() !!} {!! HCaptcha::display() !!}
@elseif(getSetting('captcha') == 'recaptcha' && isPluginEnabled('recaptcha'))
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@endif @endif

{{ __('You remember your password ?') }} {{ __('Login') }}

@endsection