<?php $__env->startSection('content'); ?>
    <ol class="breadcrumb bc-3">
        <li>
            <a href="<?php echo URL::to('dashboard'); ?>"><i class="entypo-home"></i>Home</a>
        </li>
        <li >
            <a href="<?php echo URL::to('billing_class'); ?>">Billing Class</a>
        </li>
        <li class="active">
            <strong>Create Billing Class</strong>
        </li>
    </ol>


    <?php echo $__env->make('includes.errors', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    <?php echo $__env->make('includes.success', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    <p class="pull-right">
        <?php if(User::checkCategoryPermission('BillingClass','Edit')): ?>
            <button id="save_billing" href="<?php echo URL::to('billing_class/store/0'); ?>" class="btn btn-primary btn-sm btn-icon icon-left">
                <i class="entypo-floppy"></i>
                Save
            </button>
        <?php endif; ?>
        <a href="<?php echo URL::to('billing_class'); ?>" class="btn btn-danger btn-sm btn-icon icon-left">
            <i class="entypo-cancel"></i>
            Close
        </a>
    </p>
    <?php echo $__env->make('billingclass.billingclass', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout.main', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>