<?php $__env->startSection('title', 'Add Output'); ?>

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

    <div class="page-header">
        <h1>Add a new output</h1>
        <p>Use the form below to add an output into the system</p>
    </div>

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

    <form name="AddOutput" method="POST" class="form-horizontal" enctype="multipart/form-data" action="<?php echo e(URL::route('admin.output.store')); ?>">

        <?php echo csrf_field(); ?>



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


        <div class="col-sm-2">
        </div>
        <div class="col-sm-10">
            <button type="submit" class="btn btn-default">Add Output</button>
        </div>

    </form>
</div>
<?php $__env->stopSection(); ?>

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