

<?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">Recruits</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 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 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-9">
          <div class="rt-panel-block">  
           <div class="my-profiles-block">  
         
          <div id="render-this">
                
            <h1 class="heading pull-left">Recruits</h1>
           
            <div class="row">
            
              <div class="col-md-12">
                <div class="table-responsive hide-768">
                  <table id="users-recruitment-table" class="table table-bordered zui-table zui-table-rounded invitation-pg-table">
                    <thead>
                      <tr>
                            <th>RC_ID</th>
                            <th>Receiver</th>
                            <th>Purpose</th>
                            <th>Title</th>
                            <th>Action</th>
                      </tr>
                    </thead>
                  </table>
              </div>
              </div>
            </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/recruit.js')); ?>"></script>
<?php $__env->stopSection(); ?>

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