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 +
- -
@endif