@extends('layouts.auth') @section('title', 'Reset Link Invalid') @section('content') @php $messages = [ 'used' => [ 'icon' => 'bi-slash-circle', 'color' => 'danger', 'heading' => 'Link Already Used', 'body' => 'This password reset link has already been used. Each link can only be used once.', ], 'expired' => [ 'icon' => 'bi-clock-history', 'color' => 'warning', 'heading' => 'Link Expired', 'body' => 'This password reset link has expired. Reset links are valid for 60 minutes.', ], 'invalid' => [ 'icon' => 'bi-x-circle', 'color' => 'danger', 'heading' => 'Invalid Link', 'body' => 'This password reset link is invalid or malformed.', ], ]; $info = $messages[$reason] ?? $messages['invalid']; @endphp
{{ $info['heading'] }}

{{ $info['body'] }}

Request New Reset Link
Back to sign in
@endsection