2017-06-09 02:28:26 +08:00
|
|
|
<!DOCTYPE html>
|
2017-07-28 20:13:52 +08:00
|
|
|
<html lang="en">
|
2017-08-03 02:13:08 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
2017-12-29 07:29:00 +08:00
|
|
|
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'/>
|
2018-03-13 00:00:12 +08:00
|
|
|
|
2018-03-29 03:01:38 +08:00
|
|
|
<title>@yield('title') - {{ config('app.name') }}</title>
|
2019-08-28 03:08:42 +08:00
|
|
|
|
2018-03-13 09:14:55 +08:00
|
|
|
{{-- Start of required lines block. DON'T REMOVE THESE LINES! They're required or might break things --}}
|
2019-08-28 03:08:42 +08:00
|
|
|
<meta name="base-url" content="{!! url('') !!}">
|
|
|
|
<meta name="api-key" content="{!! Auth::check() ? Auth::user()->api_key: '' !!}">
|
|
|
|
<meta name="csrf-token" content="{!! csrf_token() !!}">
|
2018-03-13 09:14:55 +08:00
|
|
|
{{-- End the required lines block --}}
|
2017-12-29 07:29:00 +08:00
|
|
|
|
2018-03-29 03:01:38 +08:00
|
|
|
<link rel="shortcut icon" type="image/png" href="{{ public_asset('/assets/img/favicon.png') }}"/>
|
2017-12-29 07:29:00 +08:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet"/>
|
2018-03-13 06:58:12 +08:00
|
|
|
<link href="{{ public_asset('/assets/frontend/css/bootstrap.min.css') }}" rel="stylesheet"/>
|
2019-09-13 20:05:02 +08:00
|
|
|
<link href="{{ public_mix('/assets/frontend/css/now-ui-kit.css') }}" rel="stylesheet"/>
|
2018-06-22 22:26:08 +08:00
|
|
|
<link href="{{ public_asset('/assets/frontend/css/styles.css') }}" rel="stylesheet"/>
|
2017-12-20 05:19:06 +08:00
|
|
|
|
2018-03-29 03:01:38 +08:00
|
|
|
{{-- Start of the required files in the head block --}}
|
2019-08-28 22:52:35 +08:00
|
|
|
<link href="{{ public_mix('/assets/global/css/vendor.css') }}" rel="stylesheet"/>
|
2018-06-22 22:26:08 +08:00
|
|
|
<style type="text/css">
|
2018-02-23 01:34:57 +08:00
|
|
|
@yield('css')
|
2018-06-22 22:26:08 +08:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<script>
|
2018-03-17 00:38:06 +08:00
|
|
|
@yield('scripts_head')
|
2018-06-22 22:26:08 +08:00
|
|
|
</script>
|
2018-03-29 03:01:38 +08:00
|
|
|
{{-- End of the required stuff in the head block --}}
|
2018-04-07 06:10:45 +08:00
|
|
|
|
2017-06-09 02:28:26 +08:00
|
|
|
</head>
|
2017-08-03 02:13:08 +08:00
|
|
|
<body>
|
|
|
|
<!-- Navbar -->
|
2019-09-12 23:48:41 +08:00
|
|
|
<nav class="navbar navbar-expand-lg " style="background: #067ec1;">
|
2019-09-17 03:17:51 +08:00
|
|
|
<p class="navbar-brand text-white" data-placement="bottom" target="_blank">
|
2019-10-30 01:03:04 +08:00
|
|
|
<a href="{{ url('/') }}" style="margin-left: 20px;">
|
|
|
|
<img src="{{ public_asset('/assets/img/logo_blue_bg.svg') }}" width="135px" />
|
2019-09-17 03:17:51 +08:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<div class="collapse navbar-collapse justify-content-end" id="navigation">
|
|
|
|
@include('nav')
|
|
|
|
</div>
|
2017-07-28 20:13:52 +08:00
|
|
|
</nav>
|
2017-08-03 02:13:08 +08:00
|
|
|
<!-- End Navbar -->
|
2018-05-05 02:59:47 +08:00
|
|
|
<div id="top_anchor" class="clearfix" style="height: 25px;"></div>
|
2017-08-03 02:13:08 +08:00
|
|
|
<div class="wrapper">
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div class="container-fluid" style="width: 85%!important;">
|
2018-03-13 09:14:55 +08:00
|
|
|
|
|
|
|
{{-- These should go where you want your content to show up --}}
|
2018-03-12 07:00:42 +08:00
|
|
|
@include('flash.message')
|
2017-08-03 02:13:08 +08:00
|
|
|
@yield('content')
|
2018-03-13 09:14:55 +08:00
|
|
|
{{-- End the above block--}}
|
|
|
|
|
2017-08-03 02:13:08 +08:00
|
|
|
</div>
|
|
|
|
<div class="clearfix" style="height: 200px;"></div>
|
2018-01-20 07:13:59 +08:00
|
|
|
|
|
|
|
<footer class="footer footer-default">
|
|
|
|
<div class="container">
|
|
|
|
<div class="copyright">
|
2018-02-23 01:37:47 +08:00
|
|
|
{{--
|
|
|
|
Please keep the copyright message somewhere, as-per the LICENSE file
|
2018-03-13 09:14:55 +08:00
|
|
|
Thanks!!
|
2018-02-23 01:37:47 +08:00
|
|
|
--}}
|
2018-01-20 07:13:59 +08:00
|
|
|
powered by <a href="http://www.phpvms.net" target="_blank">phpvms</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2017-07-28 20:13:52 +08:00
|
|
|
</div>
|
2017-06-09 02:28:26 +08:00
|
|
|
|
2018-02-23 01:34:57 +08:00
|
|
|
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
|
2018-03-13 07:10:35 +08:00
|
|
|
|
2018-03-13 09:14:55 +08:00
|
|
|
{{-- Start of the required tags block. Don't remove these or things will break!! --}}
|
2019-08-28 22:52:35 +08:00
|
|
|
<script src="{{ public_mix('/assets/global/js/vendor.js') }}"></script>
|
2019-09-12 23:48:41 +08:00
|
|
|
<script src="{{ public_mix('/assets/frontend/js/vendor.js') }}"></script>
|
2019-08-28 22:52:35 +08:00
|
|
|
<script src="{{ public_mix('/assets/frontend/js/app.js') }}"></script>
|
2018-03-13 09:14:55 +08:00
|
|
|
@yield('scripts')
|
2018-08-20 23:25:40 +08:00
|
|
|
|
|
|
|
{{--
|
|
|
|
It's probably safe to keep this to ensure you're in compliance
|
|
|
|
with the EU Cookie Law https://privacypolicies.com/blog/eu-cookie-law
|
|
|
|
--}}
|
|
|
|
<script>
|
|
|
|
window.addEventListener("load", function () {
|
|
|
|
window.cookieconsent.initialise({
|
2018-09-20 22:36:15 +08:00
|
|
|
palette: {
|
|
|
|
popup: {
|
|
|
|
background: "#edeff5",
|
|
|
|
text: "#838391"
|
2018-08-20 23:25:40 +08:00
|
|
|
},
|
2018-09-20 22:36:15 +08:00
|
|
|
button: {
|
2018-08-20 23:25:40 +08:00
|
|
|
"background": "#067ec1"
|
|
|
|
}
|
|
|
|
},
|
2018-09-20 22:36:15 +08:00
|
|
|
position: "top",
|
2018-08-20 23:25:40 +08:00
|
|
|
})
|
|
|
|
});
|
|
|
|
</script>
|
2018-03-13 09:14:55 +08:00
|
|
|
{{-- End the required tags block --}}
|
|
|
|
|
2017-08-17 07:18:47 +08:00
|
|
|
<script>
|
2018-08-20 23:25:40 +08:00
|
|
|
$(document).ready(function () {
|
2018-04-07 06:10:45 +08:00
|
|
|
$(".select2").select2({width: 'resolve'});
|
2018-08-20 23:25:40 +08:00
|
|
|
});
|
2017-08-17 07:18:47 +08:00
|
|
|
</script>
|
2017-06-09 02:28:26 +08:00
|
|
|
</body>
|
2017-06-09 03:16:50 +08:00
|
|
|
</html>
|