From 2c44e3b3ad2298b5040c93591ea0946bc4b7a77d Mon Sep 17 00:00:00 2001 From: cp6 Date: Sun, 20 Feb 2022 22:18:02 +1100 Subject: [PATCH] Updated auth validation component to be an alert Updated auth validation component to be an alert --- .../components/auth-validation-errors.blade.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/resources/views/components/auth-validation-errors.blade.php b/resources/views/components/auth-validation-errors.blade.php index fc0eaeb..5fb5265 100644 --- a/resources/views/components/auth-validation-errors.blade.php +++ b/resources/views/components/auth-validation-errors.blade.php @@ -2,14 +2,13 @@ @if ($errors->any())
-
+
{{ __('Whoops! Something went wrong.') }} +
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
- -
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
@endif