31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('themes.default1.layouts.login')
 | |
| @section('body')
 | |
| 
 | |
| 
 | |
| <div class="row">
 | |
|     <div class="col-xs-12">  
 | |
|         <!-- check whether success or not -->
 | |
|         @if(Session::has('success'))
 | |
|         <div class="alert alert-success alert-dismissable">
 | |
|             <i class="fa  fa-check-circle"></i>
 | |
|             <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
 | |
|             {{Session::get('success')}}
 | |
|         </div>
 | |
|         @endif
 | |
|         <!-- failure message -->
 | |
|         @if(Session::has('fails'))
 | |
|         <div class="alert alert-danger alert-dismissable">
 | |
|             <i class="fa fa-ban"></i><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
 | |
|             <b>{!! Lang::get('lang.alert') !!} !</b>            
 | |
|             {{Session::get('fails')}}
 | |
|         </div>
 | |
|         @endif
 | |
|         <h3>File Update Required</h3>
 | |
|         <p>{{ucfirst(Config::get('app.name'))}} has been updated! Before we send you on your own way,
 | |
|             we have to update your files to the newest version.</p>
 | |
|         <p>The update process may take a little while, so please be patient.</p>
 | |
|         <p><a href="{{$url}}" class="btn btn-default">Update {{ucfirst(Config::get('app.name'))}} Files</a></p>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| @stop | 
