@extends('layouts.app') @section('title', __('auth.forgot_password')) @section('content')

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

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

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