@extends('layouts.auth') @section('title', 'Forgot password') @section('auth_title', 'Forgot your password?') @section('auth_subtitle', 'Enter your registered email and we\'ll send you a reset link.') @section('content') @if(session('status'))
{{ session('status') }}
@endif
@csrf
@error('email')
{{ $message }}
@enderror
{{-- ── Anti-bot: math captcha + honeypot ──────────────────────────── --}}
@error(\App\Support\SimpleCaptcha::FIELD_NAME)
{{ $message }}
@enderror

Back to sign in

@endsection