From 197e6f7e497d4b357c3ebdcdf01c6bb7c7d9670d Mon Sep 17 00:00:00 2001 From: boban Date: Sun, 14 Jun 2026 17:10:24 +0200 Subject: [PATCH] fix(auth): show the reset-success status on the login page Both reset paths flash a `status` and redirect to login, but it was never rendered. Show it as a success banner so the user gets confirmation their password changed. Co-Authored-By: Claude Opus 4.8 (1M context) --- resources/views/livewire/auth/login.blade.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/resources/views/livewire/auth/login.blade.php b/resources/views/livewire/auth/login.blade.php index 4f89cc1..1fb2109 100644 --- a/resources/views/livewire/auth/login.blade.php +++ b/resources/views/livewire/auth/login.blade.php @@ -11,6 +11,13 @@

{{ __('auth.login_subtitle') }}

+ @if (session('status')) +
+ +

{{ session('status') }}

+
+ @endif +