Akaunting/resources/views/components/layouts/error.blade.php

33 lines
897 B
PHP
Raw Normal View History

2022-06-01 07:15:55 +00:00
<!DOCTYPE html>
<html dir="{{ language()->direction() }}" lang="{{ app()->getLocale() }}">
2023-12-10 10:45:04 +00:00
<x-layouts.error.head>
2022-06-01 07:15:55 +00:00
<x-slot name="title">
{!! !empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
</x-slot>
2023-12-10 10:45:04 +00:00
</x-layouts.error.head>
2022-06-01 07:15:55 +00:00
@mobile
2022-12-13 07:57:11 +00:00
<body class="bg-body">
2022-06-01 07:15:55 +00:00
@elsemobile
2022-12-13 07:57:11 +00:00
<body class="bg-body overflow-y-overlay">
2022-06-01 07:15:55 +00: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">
2023-12-10 10:45:04 +00:00
<x-layouts.error.content>
2022-06-01 07:15:55 +00:00
{!! $content !!}
2023-12-10 10:45:04 +00:00
</x-layouts.error.content>
2022-06-01 07:15:55 +00:00
</div>
</div>
</div>
@stack('body_end')
2023-12-10 10:45:04 +00:00
<x-layouts.error.scripts />
2022-06-01 07:15:55 +00:00
</body>
</html>