{!! Form::open(array('url' => route('postCreateTicket', array('event_id' => $event->id)), 'class' => 'ajax')) !!}

Create Ticket

{!! Form::label('title', 'Ticket Title', array('class'=>'control-label required')) !!} {!! Form::text('title', Input::old('title'), array( 'class'=>'form-control', 'placeholder'=>'E.g: General Admission' )) !!}
{!! Form::label('price', 'Ticket Price', array('class'=>'control-label required')) !!} {!! Form::text('price', Input::old('price'), array( 'class'=>'form-control', 'placeholder'=>'E.g: 25.99' )) !!}
{!! Form::label('quantity_available', 'Quantity Available', array('class'=>' control-label')) !!} {!! Form::text('quantity_available', Input::old('quantity_available'), array( 'class'=>'form-control', 'placeholder'=>'E.g: 100 (Leave blank for unlimited)' ) ) !!}
{!! Form::label('description', 'Ticket Description', array('class'=>'control-label')) !!} {!! Form::text('description', Input::old('description'), array( 'class'=>'form-control' )) !!}
{!! Form::label('start_sale_date', 'Start Sale On', array('class'=>' control-label')) !!} {!! Form::text('start_sale_date', Input::old('start_sale_date'), [ 'class'=>'form-control start hasDatepicker ', 'data-field'=>'datetime', 'data-startend'=>'start', 'data-startendelem'=>'.end', 'readonly'=>'' ]) !!}
{!! Form::label('end_sale_date', 'End Sale On', [ 'class'=>' control-label ' ]) !!} {!! Form::text('end_sale_date', Input::old('end_sale_date'), [ 'class'=>'form-control end hasDatepicker ', 'data-field'=>'datetime', 'data-startend'=>'end', 'data-startendelem'=>'.start', 'readonly'=>'' ]) !!}
{!! Form::label('min_per_person', 'Minimum Tickets Per Order', array('class'=>' control-label')) !!} {!! Form::selectRange('min_per_person', 1, 100, 1, ['class' => 'form-control']) !!}
{!! Form::label('max_per_person', 'Maximum Tickets Per Order', array('class'=>' control-label')) !!} {!! Form::selectRange('max_per_person', 1, 100, 30, ['class' => 'form-control']) !!}
{!! Form::checkbox('is_hidden', 1, false, ['id' => 'is_hidden']) !!} {!! Form::label('is_hidden', 'Hide this ticket', array('class'=>' control-label')) !!}
More Options
{!! Form::button('Cancel', ['class'=>"btn modal-close btn-danger",'data-dismiss'=>'modal']) !!} {!! Form::submit('Create Ticket', ['class'=>"btn btn-success"]) !!}
{!! Form::close() !!}