27 lines
675 B
PHP
27 lines
675 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>{{ config('app.name') }}</title>
|
|
|
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/css/select2.min.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@include('partials/navbar')
|
|
|
|
<main role="main" class="container">
|
|
@yield('content')
|
|
</main><!-- /.container -->
|
|
|
|
<script src="{{ mix('js/app.js') }}"></script>
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|