@extends('frontend.user.layouts.auth') @section('title', 'Forgot Password') @section('content')

{{ translate('Reset Your Password', 'auth') }}

{{ translate('Enter your email address and we will send you a link to reset your password.', 'auth') }}

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

{{ translate('Remembered your password?', 'auth') }} {{ translate('Log in here', 'auth') }}

@endsection