fix style error message when failed login

This commit is contained in:
arifal
2025-03-21 15:10:28 +07:00
parent d7bff86741
commit f3ef21d1be

View File

@@ -30,7 +30,7 @@ class="authentication-bg"
@if (sizeof($errors) > 0) @if (sizeof($errors) > 0)
@foreach ($errors->all() as $error) @foreach ($errors->all() as $error)
<p class="text-red-600 mb-3">{{ $error }}</p> <p class="text-red mb-3">{{ $error }}</p>
@endforeach @endforeach
@endif @endif
@@ -39,6 +39,7 @@ class="authentication-bg"
<input type="email" class="form-control" id="email" name="email" placeholder="Enter your email"> <input type="email" class="form-control" id="email" name="email" placeholder="Enter your email">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Enter your password"> <input type="password" class="form-control" id="password" name="password" placeholder="Enter your password">
</div> </div>
<div class="d-grid"> <div class="d-grid">