@extends('admin.layouts.login') @section('content') @if (Session::get('error'))
{!! Session::get('error') !!}
@endif @if (Session::get('status'))
{!! Session::get('status') !!}
@endif
@csrf

Forgot your password?

Enter your e-mail address below to reset your password.

@if (isset($errors) && count($errors) > 0)
@foreach ($errors->all() as $error) {{ $error }} @endforeach
@endif @if (Session::get('success'))
{{ Session::get('success') }}
@endif
Back
@stop