{{-- resources/views/auth/forgot-password.blade.php --}} @extends('layouts.horizontalLayoutMaster') @section('title', 'Forgot Password') @section('page-style') @endsection @section('content')

Forgot Password

No problem. Just enter your email address and we’ll send you a password reset link.

{{-- ✅ Session Status --}} @if (session('status'))
{{ session('status') }}
@endif {{-- ✅ Form --}}
@csrf
@error('email')
{{ $message }}
@enderror
@endsection