mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 06:07:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div class="justify-content-center align-items-center pd-10 pm-10">
 | ||
| 	@if ($message = Session::get('success'))
 | ||
| 	<div class="alert alert-success alert-block">
 | ||
| 		<button type="button" class="close" data-dismiss="alert">×</button>	
 | ||
| 	        <strong>{{ $message }}</strong>
 | ||
| 	</div>
 | ||
| 	@endif
 | ||
| 
 | ||
| 
 | ||
| 	@if ($message = Session::get('error'))
 | ||
| 	<div class="alert alert-danger alert-block">
 | ||
| 		<button type="button" class="close" data-dismiss="alert">×</button>	
 | ||
| 	        <strong>{{ $message }}</strong>
 | ||
| 	</div>
 | ||
| 	@endif
 | ||
| 
 | ||
| 
 | ||
| 	@if ($message = Session::get('warning'))
 | ||
| 	<div class="alert alert-warning alert-block">
 | ||
| 		<button type="button" class="close" data-dismiss="alert">×</button>	
 | ||
| 		<strong>{{ $message }}</strong>
 | ||
| 	</div>
 | ||
| 	@endif
 | ||
| 
 | ||
| 
 | ||
| 	@if ($message = Session::get('info'))
 | ||
| 	<div class="alert alert-info alert-block">
 | ||
| 		<button type="button" class="close" data-dismiss="alert">×</button>	
 | ||
| 		<strong>{{ $message }}</strong>
 | ||
| 	</div>
 | ||
| 	@endif
 | ||
| 
 | ||
| 
 | ||
| 	@if ($errors->any())
 | ||
| 	<div class="alert alert-danger">
 | ||
| 		<button type="button" class="close" data-dismiss="alert">×</button>	
 | ||
| 		Please check the form below for errors
 | ||
| 	</div>
 | ||
| 	@endif
 | ||
| </div> |