10 lines
324 B
PHP
10 lines
324 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
@include('layouts.partials.head')
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<div class="min-h-screen flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
|
@yield('content')
|
|
</div>
|
|
</body> |