Skip to content

Commit

Permalink
fix error in login page
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarzin committed Aug 1, 2023
1 parent 89b9ab5 commit cd3a37c
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 @@ -25,7 +25,7 @@ class="login-form bg-white p-6 mx-auto border fg-black win-shadow"
<h2 class="text-medium m-0 pl-7" style="line-height: 52px">Deming</h2>
<div class="mb-4">{{ trans("cruds.login.connection") }}</div>
<div class="form-group">
<input type="text" data-role="input" class="form-control @error('email') is-invalid @enderror" data-prepend="<span class='mif-user'></span>" name="login" value="{{ old('login') }}" id="login" required>
<input type="text" data-role="input" class="form-control @error('login') is-invalid @enderror" data-prepend="<span class='mif-user'></span>" name="login" value="{{ old('login') }}" id="login" required>
@error('login')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
Expand Down Expand Up @@ -57,7 +57,7 @@ function invalidForm(){
$(document).ready(function() {
setTimeout(function() {
$("#email").focus();
$("#login").focus();
}, 1500);
});
Expand Down

0 comments on commit cd3a37c

Please sign in to comment.