Files
lucent-laravel/front/views/layouts/account.blade.php
T
2024-10-07 16:34:53 +03:00

16 lines
420 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")
<link rel="icon" type="image/x-icon" href="/favicon.ico"/>
</head>
<body>
@yield('content')
</body>
</html>