Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankaufmann committed Apr 4, 2024
1 parent 833e98e commit 94cb359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<input class="textbox" name="email" size="40" value="{{ old('email') }}">
@if ($errors->has('email'))
<div>
<span class="invalid-feedback" role="alert">
<span class="invalid-feedback d-block" role="alert">
<strong>{{ $errors->first('email') }}</strong>
</span>
</div>
Expand All @@ -45,7 +45,7 @@
<input class="textbox" type="checkbox" name="remember" id="remember" {{old('remember') ? 'checked' : ''}}> Remember Me
@if ($errors->has('password'))
<div>
<span class="invalid-feedback" role="alert">
<span class="invalid-feedback d-block" role="alert">
<strong>{{ $errors->first('password') }}</strong>
</span>
</div>
Expand Down

0 comments on commit 94cb359

Please sign in to comment.