{{-- resources/views/auth/forgot-password.blade.php --}} @extends('layouts.page') @section('title', 'Reset Password - PangoQ') @section('page-title', 'Reset your password') @section('page-subtitle', 'We\'ll send you a link to reset your password') @section('content')

Forgot your password?

No problem. Just let us know your email address and we'll email you a password reset link.

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection