Skip to content

Commit

Permalink
Added missing errors on login
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Nov 2, 2024
1 parent bb47b3d commit 7d0afdd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/auth/lockme.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</div>

@error('email')
<span class="d-block invalid-feedback text-danger">
<span class="d-block invalid-feedback">
{{ $errors->first('email') }}
</span>
@enderror
Expand Down
7 changes: 7 additions & 0 deletions resources/views/auth/signin.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@
->inputmode('email')
->placeholder(__('Enter your email'))
!!}

@error('email')
<span class="d-block invalid-feedback">
{{ $errors->first('email') }}
</span>
@enderror
</div>


<div class="mb-3">
<label class="form-label w-100">
{{__('Password')}}
Expand Down

0 comments on commit 7d0afdd

Please sign in to comment.