@extends('layouts.app') @section('content')

{{ __('auth.forgot_password') }}

{{ __('auth.forgot_password_message') }}

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