2016-07-22 19:36:24 +08:00
|
|
|
<!DOCTYPE html>
|
2019-12-31 10:00:27 +08:00
|
|
|
<html lang="{{ locale }}">
|
2016-07-22 19:36:24 +08:00
|
|
|
<head>
|
2019-09-17 23:10:44 +08:00
|
|
|
@include('shared.head')
|
2018-07-06 14:49:39 +08:00
|
|
|
<title>@yield('title') - {{ option_localized('site_name') }}</title>
|
2016-07-22 19:36:24 +08:00
|
|
|
@yield('style')
|
|
|
|
</head>
|
|
|
|
|
2019-11-24 14:32:58 +08:00
|
|
|
<body class="hold-transition sidebar-mini">
|
2016-07-22 19:36:24 +08:00
|
|
|
<div class="wrapper">
|
2019-09-17 23:10:44 +08:00
|
|
|
@include('shared.header')
|
|
|
|
@include('shared.sidebar', ['scope' => 'admin'])
|
2016-07-22 19:36:24 +08:00
|
|
|
@yield('content')
|
2019-12-07 16:39:04 +08:00
|
|
|
@include('shared.footer')
|
2019-09-17 23:10:44 +08:00
|
|
|
</div>
|
2016-07-22 19:36:24 +08:00
|
|
|
|
2019-09-17 23:10:44 +08:00
|
|
|
@include('shared.foot')
|
2016-07-22 19:36:24 +08:00
|
|
|
@yield('script')
|
|
|
|
</body>
|
|
|
|
</html>
|