2018-10-23 18:47:55 +03:00
|
|
|
<html lang="{{ setting('general.default_locale') }}">
|
|
|
|
@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')
|
2018-10-24 19:36:21 +03:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
2018-10-25 16:12:47 +03:00
|
|
|
$('#wizard-skip, .stepwizard .btn.btn-default').on('click', function() {
|
2018-10-24 19:36:21 +03:00
|
|
|
$('#wizard-loading').html('<span class="wizard-loading-bar"><span class="wizard-loading-spin"><i class="fa fa-spinner fa-spin"></i></span></span>');
|
|
|
|
});
|
|
|
|
</script>
|
2018-10-23 18:47:55 +03:00
|
|
|
</body>
|
|
|
|
</html>
|