akaunting/resources/views/layouts/wizard.blade.php

25 lines
409 B
PHP
Raw Normal View History

<html lang="{{ app()->getLocale() }}">
2018-10-23 18:47:55 +03:00
@include('partials.wizard.head')
2019-11-16 10:21:14 +03:00
<body class="wizard-page">
<div class="container mt--5">
@stack('body_start')
<div id="app">
@include('partials.wizard.content')
</div>
@stack('body_end')
2018-10-23 18:47:55 +03:00
</div>
2019-11-16 10:21:14 +03:00
@include('partials.wizard.scripts')
2018-10-24 19:36:21 +03:00
2018-10-23 18:47:55 +03:00
</body>
2019-11-16 10:21:14 +03:00
2018-10-23 18:47:55 +03:00
</html>