@extends('layouts.auth') @section('title', 'Forgot Your Password') @push('styles') @endpush @section('content')
{{-- Logo --}}

Forgot Password

Enter the email address associated with your account and we will send you a link to reset your password

{{-- Alerts --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Forgot password Form --}}
@csrf
@error('email')
{{ $message }}
@enderror

Back to Login

@endsection