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

23 lines
426 B
PHP
Raw Normal View History

2021-05-20 15:18:43 +03:00
<html>
2021-05-25 19:52:39 +03:00
@include('partials.wizard.head')
2021-05-20 15:18:43 +03:00
2021-05-25 19:52:39 +03:00
<body class="wizard-page">
2021-05-20 15:18:43 +03:00
2021-05-25 19:52:39 +03:00
<div class="container mt--5">
@stack('body_start')
2021-05-20 15:18:43 +03:00
2021-05-25 19:52:39 +03:00
<div id="app">
<div class="card-body">
2021-05-20 15:18:43 +03:00
2021-05-25 19:52:39 +03:00
@include('flash::message')
2021-05-20 15:18:43 +03:00
2021-05-25 19:52:39 +03:00
@yield('content')
</div>
</div>
2021-05-20 15:18:43 +03:00
2021-05-25 19:52:39 +03:00
</div>
2021-05-20 15:18:43 +03:00
2021-05-25 19:52:39 +03:00
@include('partials.wizard.scripts')
</body>
2021-05-20 15:18:43 +03:00
</html>