@extends('layouts.guest') @section('title', 'Forgot Password') @section('content')

Forgot Password?

Enter your email and we will send you a password reset link.

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif
@csrf
@error('email')

{{ $message }}

@enderror
Back to Login
@endsection