mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-10-30 17:41:06 -03:00 
			
		
		
		
	Sometimes the error box was appearing with no space between it and other boxes
		
			
				
	
	
		
			11 lines
		
	
	
		
			300 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			300 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @if (count($errors))
 | |
|     <div class="form-group mt-2 ml-2 mr-2 mb-2">
 | |
|         <div class="alert alert-danger">
 | |
|             <ul>
 | |
|                 @foreach ($errors->all() as $error)
 | |
|                     <li>{{ $error }}</li>
 | |
|                 @endforeach
 | |
|             </ul>
 | |
|         </div>
 | |
|     </div>
 | |
| @endif |