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

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

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

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

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