@extends('layout.simpleapp') @section('content')

{{__('Forgot Password?')}}

{{__('Enter the email address associated with your account')}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (Session::has('status'))
  • {{ Session::get('status') }}
@endif @csrf
{{--
{{__('Please sign in to access your account')}}
--}}
@endsection