11 lines
272 B
PHP
11 lines
272 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_','-',app()->getLocale()) }}">
|
|
<x-head/>
|
|
<body class="bg-gradient-to-br from-blue-900 via-blue-700 to-indigo-900 min-h-screen">
|
|
<div class="container mx-auto text-white">
|
|
<x-header/>
|
|
{{ $slot }}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|