

<?php $__env->startSection('css'); ?>
<link href="<?php echo e(asset('/css/bootstrapValidator.min.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('plugins/datatables/css/jquery.dataTables.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('plugins/select2/css/select2.min.css')); ?>" rel="stylesheet">
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<section class="main_content">
    <div class="container">
    <ol class="breadcrumb cust-breadcrumb">
              <li><a href="<?php echo e(url('/')); ?>">Home</a></li>
              <li class="active">Inquiries</li>
            </ol>
            <div class="row">
                <div class="clearfix"></div>
                <?php if(Session::get('error_msg')): ?>
                  <div class="col-md-12">
                    <div class="alert alert-danger">
                       <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                         <span aria-hidden="true">&times;</span>
                       </button>
                        <?php echo e(Session::get('error_msg')); ?>

                    </div>
                  </div>
                <?php endif; ?>
                <?php if(Session::get('succ_msg')): ?>
                  <div class="col-md-12">
                    <div class="alert alert-success">
                       <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                         <span aria-hidden="true">&times;</span>
                       </button>
                        <?php echo e(Session::get('succ_msg')); ?>

                    </div>
                  </div>  
                <?php endif; ?>
              </div>
              
      <div class="row talent_home">
        <?php echo $__env->make("left_menu", array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        <div class="col-md-9 col-sm-8">
         <div class="rt-panel-block">  
           <div class="my-profiles-block">  
          <div id="render-this">
            <h1 class="heading pull-left">Inquiries</h1>
            
            <div class="row">
              <div class="col-md-12">
                <div class="table-responsive visible-360">
                  <table id="users-invitation-all-table" class="table table-bordered zui-table zui-table-rounded invitation-pg-table">
                    <thead>
                      <tr>
                        <th>Date</th>
                        <th>Receiver</th>
                        <th>Subject</th>
<!--                        <th>Action</th>-->
                      </tr>
                    </thead>
                  </table></div>
              
              </div>
            </div>          
          </div>
        </div></div></div>

           
  </section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?>
<script src="<?php echo e(asset('js/bootstrapValidator.min.js')); ?>"></script>
<script src="<?php echo e(asset('js/bootbox.js')); ?>"></script>
<script src="<?php echo e(asset('plugins/datatables/js/jquery.dataTables.js')); ?>"></script>
<script src="<?php echo e(asset('plugins/select2/js/select2.min.js')); ?>"></script>
<script src="<?php echo e(asset('js/typeahead_0.11.js')); ?>"></script>
<script src="<?php echo e(asset('js/handlebars.js')); ?>"></script>
<script src="<?php echo e(asset('js/validation.js')); ?>"></script>
<script src="<?php echo e(asset('js/inquiry.js')); ?>"></script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('main', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>