<?php $__env->startSection('title'); ?>
    Add a new Compensation
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
    <form action="<?php echo e(URL::action('CompensationController@postAddCompensation')); ?>" method="POST">
        <?php echo csrf_field(); ?>

        <div class="form-group">
            <label class="control-label">Name</label>
            <input type="text" class="form-control" name="name" placeholder="Name...">
        </div>
        <div class="form-group">
            <label class="control-label">Details</label>
            <textarea class="form-control" name="details"></textarea>
        </div>
        <div class="form-actions text-center">
            <button type="submit" class=" btn btn-green">
                Create Compensation & Benefit
            </button>
        </div>
    </form>
<?php $__env->stopSection(); ?>

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