]> git.localhorst.tv Git - alttp.git/blob - resources/views/components/auth-validation-errors.blade.php
add discord auth
[alttp.git] / resources / views / components / auth-validation-errors.blade.php
1 @props(['errors'])
2
3 @if ($errors->any())
4     <div {{ $attributes }}>
5         <div class="font-medium text-red-600">
6             {{ __('Whoops! Something went wrong.') }}
7         </div>
8
9         <ul class="mt-3 list-disc list-inside text-sm text-red-600">
10             @foreach ($errors->all() as $error)
11                 <li>{{ $error }}</li>
12             @endforeach
13         </ul>
14     </div>
15 @endif