{!! Form::model($ticket, array('url' => route('postEditTicket', array('ticket_id' => $ticket->id, 'event_id' => $event->id)), 'class' => 'ajax ')) !!}

Edit Ticket: {{{$ticket->title}}}

{!! 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', $ticket->getFormatedDate('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', $ticket->getFormatedDate('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, Input::old('min_per_person'), ['class' => 'form-control']) !!}
{!! Form::label('max_per_person', 'Maximum Tickets Per Order', array('class'=>' control-label')) !!} {!! Form::selectRange('max_per_person', 1, 100, Input::old('max_per_person'), ['class' => 'form-control']) !!}
More Options
{!! Form::button('Close', ['class'=>"btn modal-close btn-danger",'data-dismiss'=>'modal']) !!} {!! Form::submit('Save Ticket', array('class'=>"btn btn-success")) !!}
{!! Form::close() !!}