20 lines
683 B
PHP
20 lines
683 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ config('app.name') }} | {{ $data['title'] }}</title>
|
|
@vite('resources/css/app.css')
|
|
</head>
|
|
<body>
|
|
<div class="bg-gray-300 w-full min-h-screen flex justify-center items-center">
|
|
@include('layout.partials.flash')
|
|
@yield('content')
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
@vite('resources/js/app.js')
|
|
@yield('script')
|
|
</body>
|
|
</html> |