From 3bcfe2a460d862d3be1b17f435a5cfdfad512d04 Mon Sep 17 00:00:00 2001 From: Virgile Date: Tue, 13 Aug 2019 17:30:29 +0200 Subject: [PATCH] Adds autofocus on the email field of the standard login page. --- resources/views/auth/forms/login/standard.blade.php | 2 +- resources/views/form/text.blade.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/views/auth/forms/login/standard.blade.php b/resources/views/auth/forms/login/standard.blade.php index dc6081637..bfe437a8c 100644 --- a/resources/views/auth/forms/login/standard.blade.php +++ b/resources/views/auth/forms/login/standard.blade.php @@ -1,6 +1,6 @@
- @include('form.text', ['name' => 'email', 'tabindex' => 1]) + @include('form.text', ['name' => 'email', 'tabindex' => 1, 'focus' => 1])
diff --git a/resources/views/form/text.blade.php b/resources/views/form/text.blade.php index 909e87286..89e72ddb4 100644 --- a/resources/views/form/text.blade.php +++ b/resources/views/form/text.blade.php @@ -1,4 +1,5 @@ has($name)) class="text-neg" @endif @if(isset($placeholder)) placeholder="{{$placeholder}}" @endif @if(isset($disabled) && $disabled) disabled="disabled" @endif @@ -6,4 +7,4 @@ @if(isset($model) || old($name)) value="{{ old($name) ? old($name) : $model->$name}}" @endif> @if($errors->has($name))
{{ $errors->first($name) }}
-@endif \ No newline at end of file +@endif