@extends('admin.layout.master') @section('pageTitle', (isset($pageTitle)) ? $pageTitle : config('app.APP_NAME') ) @section('pageDescription', (isset($pageDescription)) ? $pageDescription : config('app.APP_NAME') ) @section('content')

{{__('admin/auth/forgot-password.heading-text')}}

{!! __('admin/auth/forgot-password.sign-text', ['loginUrl' => route('admin.auth.login')]) !!}
{{ __('admin/auth/forgot-password.recover-text') }}

{{ __('admin/auth/forgot-password.note-text') }}

@method('POST') @csrf()
@if($errors->has('email')) {!! __('shared.error.show', ['errorMessage' => $errors->first('email')]) !!} @endif
@endsection