akaunting 3.0 (the last dance)
This commit is contained in:
32
resources/views/components/layouts/error.blade.php
Normal file
32
resources/views/components/layouts/error.blade.php
Normal file
@ -0,0 +1,32 @@
|
||||
<!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
|
||||
<body class="g-sidenav-hidden bg-body overflow-overlay">
|
||||
@elsemobile
|
||||
<body class="g-sidenav-show bg-body overflow-overlay">
|
||||
@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>
|
Reference in New Issue
Block a user