
<?php $__env->startSection('title'); ?>
    Create new Gig
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

    <?php echo Form::open(array('route' => 'gigs.store', 'role' => 'form')); ?>
        <div class="form-group">
            <?php echo Form::label("date", "Date: "); ?>
            <?php echo Form::input("date", "date", null, array("class" => "form-control", "placeholder" => "Date...")); ?>
        </div>
        <div class="form-group">
            <?php echo Form::label("time", "Time: "); ?>
            <?php echo Form::text("time", null, array("class" => "form-control", "placeholder" => "Start time...")); ?>
        </div>
        <div class="form-group">
            <?php echo Form::label("location", "Location: "); ?>
            <?php echo Form::text("location", null, array("class" => "form-control", "placeholder" => "Content...")); ?>
        </div>
        <div class="form-group">
            <?php echo Form::label("about", "About: "); ?>
            <?php echo Form::text("about", null, array("class" => "form-control", "placeholder" => "About...")); ?>
        </div>
        <div class="form-group">
            <?php echo Form::label("cost", "Cost: "); ?>
            <?php echo Form::text("cost", null, array("class" => "form-control", "placeholder" => "Ticket link...")); ?>
        </div>
        <div class="form-group">
            <?php echo Form::label("ticketlink", "Ticket Link: "); ?>
            <?php echo Form::text("ticketlink", null, array("class" => "form-control", "placeholder" => "Ticket link...")); ?>
        </div>
    <?php echo Form::submit("Create Gig", array("class" => "btn btn-primary")); ?>

    <?php echo Form::close(); ?>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>