17 lines
441 B
PHP
17 lines
441 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>@yield('title') - {{ config("lucent.name") }}</title>
|
|
@include("lucent::includes.assets")
|
|
@stack("scripts")
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
</head>
|
|
|
|
<body>
|
|
@yield('content')
|
|
</body>
|
|
</html>
|