mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 14:29:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|  | @props(['errors']) | ||
|  | 
 | ||
|  | @if ($errors->any()) | ||
|  |     <div {{ $attributes }}> | ||
|  |         <div class="alert alert-danger"> | ||
|  |             {{ __('Whoops! Something went wrong.') }} | ||
|  |             <ul> | ||
|  |                 @foreach ($errors->all() as $error) | ||
|  |                     <li>{{ $error }}</li> | ||
|  |                 @endforeach | ||
|  |             </ul> | ||
|  |         </div> | ||
|  |     </div> | ||
|  | @endif |