@extends('layouts.auth') @section('subheading')
@endsection @section('content')
@csrf @if(session()->has('message'))
{{ session()->get('message') }}
@endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ __('Forgot Your Password?') }}
@endsection