We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d86b754 commit 36c0f2eCopy full SHA for 36c0f2e
1 file changed
resources/views/auth/passwords/reset.blade.php
@@ -29,8 +29,8 @@
29
class="form-control {{ $errors->has('email') ? 'is-invalid' : '' }}"
30
name="email"
31
value="{{ $email ?? old('email') }}"
32
- required
33
- autofocus>
+ tabindex="-1"
+ readonly>
34
@if ($errors->has('email'))
35
<div class="form-text" role="alert">
36
{{ $errors->first('email') }}
@@ -47,7 +47,8 @@ class="form-control {{ $errors->has('email') ? 'is-invalid' : '' }}"
47
type="password"
48
class="form-control {{ $errors->has('password') ? 'is-invalid' : '' }}"
49
name="password"
50
- required>
+ required
51
+ autofocus>
52
@if ($errors->has('password'))
53
54
{{ $errors->first('password') }}
0 commit comments