
<?php $__env->startSection('css'); ?>

<link href="<?php echo e(asset('/css/bootstrapValidator.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"><?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 mbot10"><?php echo e(ucwords($page['page_title'])); ?></h1>
          
          <div class="row">
              <div class="clearfix"></div>
              <?php if(Session::has('message')): ?>

            <p><?php echo e(Session::get('message')); ?></p>

            <?php endif; ?>
            
              <?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-sm-12">
            
            <?php echo $page->page_description;?>
                <div class="col-sm-12 leagel-m">
                    <?php if($data->count()>0): ?>
                    <table>
                    <?php foreach($data as $legal): ?>
                    <tr><td><div class="col-sm-12 legal_title"><a href="<?php echo e(url('legal/'.$legal->id)); ?>"><?php echo e($legal->title); ?></a>&nbsp;-</div></td><td><div class="col-sm-12"><?php echo e($legal->subject); ?></div></td></tr>
                    <?php endforeach; ?>
                    </table>
                    <?php endif; ?>
                </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/maskedinput/jquery.maskedinput.min.js')); ?>"></script>
<script src="<?php echo e(asset('js/validation.js')); ?>"></script>
<?php $__env->stopSection(); ?>

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