33 lines
1.5 KiB
PHP
33 lines
1.5 KiB
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<title>{{ config('app.name', 'W4RP Services') }}</title>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<!-- Bootstrap CSS
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
|
|
-->
|
|
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
|
|
</head>
|
|
<body>
|
|
@include('layouts.navbar')
|
|
<div class="container">
|
|
@include('inc.messages')
|
|
</div>
|
|
@yield('content')
|
|
<!-- Optional JavaScript -->
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
|
|
<!-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js"></script> -->
|
|
|
|
<script src="{{ asset('js/tab.js') }}"></script>
|
|
<script src="{{ asset('js/bootstrap.min.js') }}"></script>
|
|
<script src="{{ asset('js/bootstrap.js') }}"></script>
|
|
</body>
|
|
</html> |