From 57c2aa6f2170cfb2920bf12f7950e9dce1718f95 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Mon, 2 Feb 2026 08:40:55 -0500 Subject: [PATCH] Fix the tabbing for username to password on login (#2155) Co-authored-by: notCharles --- app/Filament/Pages/Auth/Login.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/Filament/Pages/Auth/Login.php b/app/Filament/Pages/Auth/Login.php index 582b0b3e7..58dbb1bbe 100644 --- a/app/Filament/Pages/Auth/Login.php +++ b/app/Filament/Pages/Auth/Login.php @@ -66,6 +66,14 @@ class Login extends BaseLogin ->extraInputAttributes(['tabindex' => 1]); } + protected function getPasswordFormComponent(): Component + { + /** @var TextInput $component */ + $component = parent::getPasswordFormComponent(); + + return $component->extraInputAttributes(['tabindex' => 2]); + } + protected function getOAuthFormComponent(): Component { $actions = [];