<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="csrf-token" content="{{ csrf_token() }}" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>QxCMS- {{ isset($title) ? $title:'Dashboard' }}</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- jquery ui 1.11.2 -->
<link href="{{ get_template('plugins/tablednd/tablednd.css') }}" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="{{ get_template('plugins/jquery-ui-1.11.2/jquery-ui.min.css') }}">
<!-- bootstrap 3.0.2 -->
<link href="{{ get_template('plugins/bootstrap-3.3.7/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css" />
<!-- font Awesome -->
<link href="{{ get_template('font-awesome-4.7.0/css/font-awesome.min.css') }}" rel="stylesheet" type="text/css" />
<!-- Ionicons -->
<link href="{{ get_template('ionicons-2.0.1/css/ionicons.min.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ get_template('plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ get_template('plugins/sweetalert2/dist/sweetalert2.min.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ get_template('plugins/iCheck/square/_all.css') }}" rel="stylesheet" type="text/css" />
<!-- Select 2 -->
<link href="{{ get_template('plugins/select2/select2.min.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ get_template('plugins/select2/select2.bootstrap.min.css') }}" rel="stylesheet" type="text/css" />
<!-- Datatables -->
<link href="{{ get_template('plugins/DataTables-1.10.12/media/css/dataTables.bootstrap.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ get_template('dist/css/AdminLTE.min.css') }}" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="{{ get_template('dist/css/skins/_all-skins.min.css') }}">
<!-- custom style -->
<link href="{{ get_template('plugins/notifyjs/notifyjs.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ get_template('dist/css/custom.css') }}" rel="stylesheet" type="text/css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
@yield('page-css')
</head>
<body class="skin-{{ config('template.skin') }} fixed" data-url="{{ url('/') }}">
<!-- header logo: style can be found in header.less -->
<div class="wrapper">
<header class="main-header">
<a href="{{ url('client/dashboard') }}" class="logo">
<span class="logo-mini"><b>Qx</b><!-- <img src="{{ url('img/dashboard-logo.png') }}" class="img-responsive" style="margin-top: 10px;"> --></span>
<span class="logo-lg"><b>Qx</b>CMS<!-- <img src="{{ url('img/dashboard-logo.png') }}" class="img-responsive"> --></span>
</a>
<nav class="navbar navbar-static-top">
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">
<!-- User Account: style can be found in dropdown.less -->
<li class="dropdown user user-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="glyphicon glyphicon-user"></i>
<span>{{ auth('likod')->user()->name }} <i class="caret"></i></span>
</a>
<ul class="dropdown-menu">
<!-- User image -->
<li class="user-header bg-light-purple" style="height:100px;">
<p>
{{ auth('likod')->user()->name }}
<small>{{ auth('likod')->user()->email }}</small>
<small><b>Version:</b> {{ config('app.version') }}</small>
</p>
</li>
<!-- Menu Footer-->
<li class="user-footer">
<div class="pull-left">
<a href="{{ url(config('modules.likod').'/settings/users/'.hashid(auth('likod')->user()->id).'/edit') }}" class="btn btn-default btn-flat">Profile</a>
</div>
<div class="pull-right">
<a href="{{ url(config('modules.likod').'/auth/logout') }}" class="btn btn-default btn btn-flat">Sign out</a>
</div>
</li>
</ul>
</li>
</ul>
</div>
</nav>
</header>
<aside class="main-sidebar">
<section class="sidebar">
<ul class="sidebar-menu">
<li class="header">MAIN NAVIGATION</li>
<li class="active">
<a href="{{ url(config('modules.likod').'/dashboard') }}">
<i class="fa fa-dashboard"></i> <span>Dashboard</span>
</a>
</li>
<li class="treeview">
<a href="#">
<i class="fa fa-cog"></i>
<span>Settings</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="{{ url(config('modules.likod').'/settings/users') }}"><i class="fa fa-angle-double-right"></i> User Manager</a></li>
</ul>
</li>
<li>
<a href="{{ url(config('modules.likod').'/clients') }}">
<i class="fa fa-user-circle-o"></i> <span>Clients Directory</span>
</a>
</li>
</ul>
</section>
</aside>
<div class="content-wrapper">
<!-- <div class="container-fluid"> -->
@yield('page-body')
<!-- </div> -->
</div>
<footer class="main-footer">
<div class="container-fluid">
<div class="pull-right hidden-xs">
<b>Version:</b> {{ config('app.version') }}
</div>
<strong>Copyright © 2016-{{ Date('Y') + 1}} <a href="http://www.quantumx.com">Quantum X, Inc</a>.</strong>
</div>
</footer>
</div>
<script src="{{ get_template('plugins/jQuery/jQuery-2.1.4.min.js') }}"></script>
<script src="{{ get_template('plugins/jquery-ui-1.11.2/jquery-ui.min.js') }}" type="text/javascript"></script>
<script src="{{ get_template('plugins/bootstrap-3.3.7/js/bootstrap.min.js') }}" type="text/javascript"></script>
<script type="text/javascript" src="{{ get_template('plugins/slimScroll/jquery.slimscroll.min.js') }}"></script>
<script type="text/javascript" src="{{ get_template('plugins/fastclick/fastclick.js') }}"></script>
<script src="{{ get_template('/plugins/sweetalert2/dist/sweetalert2.min.js') }}" type="text/javascript"></script>
<script src="{{ get_template('plugins/select2/select2.full.js') }}" type="text/javascript"></script>
<script src="{{ get_template('plugins/DataTables-1.10.12/media/js/jquery.dataTables.js') }}" type="text/javascript"></script>
<script src="{{ get_template('plugins/DataTables-1.10.12/media/js/dataTables.bootstrap.js') }}" type="text/javascript"></script>
<script type="text/javascript" src="{{ get_template('plugins/DataTables-1.10.12/extensions/Pagination/input_old.js') }}"></script>
<script src="{{ get_template('plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js') }}" type="text/javascript"></script>
<script src="{{ get_template('plugins/iCheck/icheck.min.js') }}" type="text/javascript"></script>
<!-- notifyjs -->
<script src="{{ get_template('plugins/notifyjs/notify.min.js') }}" type="text/javascript"></script>
<!-- token input -->
<!-- <script type="text/javascript" src="{{ get_template('js/plugins/tokeninput/jquery.tokeninput.js') }}"></script> -->
<!-- input mask -->
<script type="text/javascript" src="{{ get_template('plugins/input-mask/jquery.inputmask.js') }}"></script>
<script type="text/javascript" src="{{ get_template('plugins/input-mask/jquery.inputmask.date.extensions.js') }}"></script>
<script type="text/javascript" src="{{ get_template('plugins/input-mask/jquery.inputmask.extensions.js') }}"></script>
<script type="text/javascript" src="{{ get_template('plugins/tablednd/jquery.tablednd.0.7.min.js') }}"></script>
<!-- AdminLTE App -->
<script src="{{ get_template('dist/js/app.min.js') }}" type="text/javascript"></script>
<script type="text/javascript">
$.ajaxSetup({
headers: {
'X-CSRF-Token' : $('meta[name=csrf-token]').attr('content'),
}
});
$(function () {
$('[data-toggle="tooltip"]').tooltip();
});
</script>
<script type="text/javascript" src="{{ get_template('dist/js/helpers.js') }}"></script>
@yield('page-js')
</body>
</html>