17 lines
394 B
PHP
17 lines
394 B
PHP
<!doctype html>
|
|
<html lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>@yield('title')</title>
|
|
|
|
<link href='/css/app.css' rel='stylesheet'/>
|
|
</head>
|
|
<body>
|
|
<div class='container' id='app'>
|
|
@yield('content')
|
|
</div>
|
|
|
|
<script src='/js/app.js'></script>
|
|
</body>
|
|
</html> |