mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								@props(['errors'])
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@if ($errors->any())
							 | 
						||
| 
								 | 
							
								    <div {{ $attributes }}>
							 | 
						||
| 
								 | 
							
								        <div class="font-medium text-red-600">
							 | 
						||
| 
								 | 
							
								            {{ __('Whoops! Something went wrong.') }}
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <ul class="mt-3 list-disc list-inside text-sm text-red-600">
							 | 
						||
| 
								 | 
							
								            @foreach ($errors->all() as $error)
							 | 
						||
| 
								 | 
							
								                <li>{{ $error }}</li>
							 | 
						||
| 
								 | 
							
								            @endforeach
							 | 
						||
| 
								 | 
							
								        </ul>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								@endif
							 |