19 lines
727 B
PHP
19 lines
727 B
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('title', 'PAMSIMAS')</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"/>
|
|
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="auth-container">
|
|
@yield('content')
|
|
</div>
|
|
</body>
|
|
</html> |