12 lines
280 B
PHP
12 lines
280 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
@include('layouts.head')
|
|
|
|
<body>
|
|
@include('layouts.navigation')
|
|
|
|
<x-window :title="$header" minimize restore close class="max-w-[600px]">
|
|
{{ $slot }}
|
|
</x-window>
|
|
</body>
|
|
</html>
|