refactor: remove autofocus attribute from input fields across various forms for consistency

This commit is contained in:
Yoga Pangestu 2026-03-31 08:29:12 +07:00
parent fb78092de0
commit 7602e1ad09
5 changed files with 1 additions and 6 deletions

View File

@ -37,8 +37,7 @@ public function form(Schema $schema): Schema
->label('Nama Pengguna atau Alamat Surel')
->placeholder('johndoe@example.com')
->required()
->autocomplete(false)
->autofocus(),
->autocomplete(false),
TextInput::make('password')
->label('Kata Sandi')

View File

@ -75,7 +75,6 @@ public function form(Schema $schema): Schema
->required()
->maxLength(100)
->minLength(3)
->autofocus()
->columnSpanFull(),
Grid::make(3)

View File

@ -42,7 +42,6 @@ public static function configure(Schema $schema): Schema
->required()
->maxLength(100)
->minLength(3)
->autofocus()
->columnSpanFull(),
Grid::make(2)

View File

@ -49,7 +49,6 @@ public static function form(Schema $schema): Schema
->label('Kode')
->placeholder('FSI419')
->autocomplete(false)
->autofocus()
->required()
->maxLength(20)
->unique(ignoreRecord: true),

View File

@ -61,7 +61,6 @@ public static function configure(Schema $schema): Schema
->required()
->maxLength(100)
->minLength(3)
->autofocus()
->columnSpanFull(),
Grid::make(3)