fix: errors in views

This commit is contained in:
Andras Bacsai
2023-09-10 15:33:00 +02:00
parent 56981d134c
commit fda4ea8cca
9 changed files with 25 additions and 14 deletions

View File

@@ -24,8 +24,10 @@
<x-forms.button type="submit">{{ __('auth.reset_password') }}</x-forms.button>
</form>
@if ($errors->any())
<div class="text-center text-error">
<span>{{ __('auth.failed') }}</span>
<div class="text-xs text-center text-error">
@foreach ($errors->all() as $error)
<p>{{ $error }}</p>
@endforeach
</div>
@endif
@if (session('status'))