{{-- resources/views/auth/reset-password.blade.php --}} @extends('layouts.horizontalLayoutMaster') @section('title', 'Reset Password') @section('page-style') @endsection @section('content')

Reset Your Password

Please enter your email and new password to continue.

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Password Reset Token --}}
@endsection