'Wizard edited for spa'

This commit is contained in:
Burak Civan
2021-05-20 15:18:43 +03:00
parent cdfe846d4b
commit 79f91eab7f
25 changed files with 1849 additions and 524 deletions

View File

@ -1,21 +1,32 @@
<html lang="{{ app()->getLocale() }}">
@include('partials.wizard.head')
<html>
@include('partials.wizard.head')
<body class="wizard-page">
<body class="wizard-page">
<div class="container mt--5">
@stack('body_start')
<div class="container mt--5">
@stack('body_start')
<div id="app">
<div id="app">
{!! Form::open([
'url' => url()->current(),
'role' => 'form',
'id' => 'form-wizard',
'@submit.prevent' => 'onSubmit',
'@keydown' => 'form.errors.clear($event.target.name)',
]) !!}
<div class="card-body">
<div class="document-loading" v-if="!page_loaded">
<div><i class="fas fa-spinner fa-pulse fa-7x"></i></div>
</div>
@include('flash::message')
@include('partials.wizard.content')
@yield('content')
</div>
</div>
</div>
</div>
@stack('body_end')
</div>
@include('partials.wizard.scripts')
</body>
@include('partials.wizard.scripts')
</body>
</html>
</html>