21 lines
		
	
	
		
			714 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			714 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <html lang="{{ app()->getLocale() }}">
 | |
|     @include('partials.wizard.head')
 | |
| 
 | |
|     <body class="hold-transition {{ setting('general.admin_theme', 'skin-green-light') }} sidebar-mini fixed">
 | |
|         @stack('body_start')
 | |
| 
 | |
|         <!-- Site wrapper -->
 | |
|         <div class="wrapper">
 | |
|             @include('partials.wizard.content')
 | |
|         </div>
 | |
| 
 | |
|         @stack('body_end')
 | |
| 
 | |
|         <script type="text/javascript">
 | |
|             $('#wizard-skip, .stepwizard .btn.btn-default').on('click', function() {
 | |
|                 $('#wizard-loading').html('<span class="wizard-loading-bar"><span class="wizard-loading-spin"><i class="fa fa-spinner fa-spin"></i></span></span>');
 | |
|             });
 | |
|         </script>
 | |
|     </body>
 | |
| </html>
 |