

<?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">
<?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"><?php echo e(ucwords($page['page_title'])); ?></li>
            </ol>
      <div class="row talent_home">
        <div class="col-md-12 col-sm-12">
        <div class="rt-panel-block">
        <div class="my-profiles-block"> 
          <h1 class="heading pull-left"><?php echo e(ucwords($page['page_title'])); ?></h1>
          <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 class="col-md-12">
            <?php echo $page->page_description;?>
            </div>
          </div>
        </div></div></div>
  </section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?>
<script src="<?php echo e(asset('js/bootstrapValidator.min.js')); ?>"></script>
<?php $__env->stopSection(); ?>

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