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

Forgot your password?

Enter your email and we'll send you a reset link.

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection