@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/reset-password.heading-text')}}

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