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

Enter your email address below to receive a password reset email.

@include('partials.validation-errors', ['displayErrors' => false]) @if(session('status'))
{{ session('status') }}
@endif
@error('email') {{ $message }} @enderror

Already have an account? Login Here

@endsection