@extends('layouts.auth') @section('title', 'Reset Password') @push('styles') @endpush @section('content')

Reset your password

Enter your new password below to regain access to your account.

{{-- Alerts --}} @foreach (['success', 'error'] as $msg) @if (session($msg))
{{ session($msg) }}
@endif @endforeach @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Reset Password Form --}}
@csrf
@error('password')
{{ $message }}
@enderror

Back to login

@endsection