2022-06-01 10:15:55 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html dir="{{ language()->direction() }}" lang="{{ app()->getLocale() }}">
|
|
|
|
<x-layouts.admin.head>
|
|
|
|
<x-slot name="title">
|
|
|
|
{!! !empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
|
|
|
|
</x-slot>
|
|
|
|
</x-layouts.admin.head>
|
|
|
|
|
|
|
|
@mobile
|
2022-12-13 10:57:11 +03:00
|
|
|
<body class="bg-body">
|
2022-06-01 10:15:55 +03:00
|
|
|
@elsemobile
|
2022-12-13 10:57:11 +03:00
|
|
|
<body class="bg-body overflow-y-overlay">
|
2022-06-01 10:15:55 +03:00
|
|
|
@endmobile
|
|
|
|
|
|
|
|
@stack('body_start')
|
|
|
|
|
|
|
|
<div class="main-content xl:ltr:ml-64 xl:rtl:mr-64 transition-all ease-in-out" id="panel">
|
|
|
|
<div id="main-body">
|
|
|
|
<div class="container">
|
|
|
|
<x-layouts.admin.content>
|
|
|
|
{!! $content !!}
|
|
|
|
</x-layouts.admin.content>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stack('body_end')
|
|
|
|
|
|
|
|
<x-layouts.admin.scripts />
|
|
|
|
</body>
|
|
|
|
</html>
|