2016-07-21 22:01:57 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2016-09-15 23:03:58 +08:00
|
|
|
<title>@yield('title') - {{ option('site_name') }}</title>
|
2016-12-31 13:36:46 +08:00
|
|
|
{!! bs_favicon() !!}
|
2016-07-21 22:01:57 +08:00
|
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
|
|
<!-- App Styles -->
|
2016-09-15 11:04:08 +08:00
|
|
|
{!! bs_header('auth') !!}
|
2017-06-28 20:42:51 +08:00
|
|
|
<script>blessing.redirect_to = '<?php echo session('last_requested_path') ?>';</script>
|
2016-07-21 22:01:57 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="hold-transition login-page">
|
|
|
|
|
|
|
|
@yield('content')
|
|
|
|
|
2017-01-22 22:19:19 +08:00
|
|
|
<!-- YOU CAN NOT MODIFIY THE COPYRIGHT TEXT W/O PERMISSION -->
|
|
|
|
<div id="copyright-text" class="hide">
|
|
|
|
{!! bs_copyright() !!}
|
|
|
|
</div>
|
|
|
|
|
2016-07-21 22:01:57 +08:00
|
|
|
<!-- App Scripts -->
|
2016-09-15 11:04:08 +08:00
|
|
|
{!! bs_footer('auth') !!}
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-15 11:04:08 +08:00
|
|
|
@yield('script')
|
2016-07-21 22:01:57 +08:00
|
|
|
</body>
|
|
|
|
</html>
|