@extends('layouts.auth') @section('title','Forgot your password?') @section('content')
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())

{{ __('Whoops! Something went wrong.') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

{{ __('Please enter your email address. You will receive a link to create a new password via email.') }}

@endsection