15 lines
590 B
PHP
15 lines
590 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ config('app.name', 'Laravel') }} - Authentication</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
</head>
|
|
<body class="bg-gradient-to-br from-[#f8f0f0] to-[#ffe6e6] min-h-screen">
|
|
<div class="min-h-screen">
|
|
@yield('content')
|
|
</div>
|
|
</body>
|
|
</html>
|