
PK 
<!DOCTYPE html>
<html lang="en">
@include('user.layouts.head')
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
@include('user.layouts.sidebar')
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
@include('user.layouts.header')
<!-- End of Topbar -->
<!-- Begin Page Content -->
@yield('main-content')
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
@include('user.layouts.footer')
</body>
</html>


PK 99