Create Question

{!! Form::model($question, ['url' => $form_url, 'id' => 'edit-question-form', 'class' => 'ajax']) !!}
{!! Form::text('title', '', [ 'id' => 'question-title', 'class' => 'form-control', 'placeholder' => 'e.g.: What is your name?', ]) !!}
{!! Form::text('instructions', null, [ 'id' => 'question-instructions', 'class' => 'form-control', ]) !!}
has_options) ? ' class="hide"' : '' !!}> Question Options @foreach ($question_options as $question_option) @endforeach
Option name
Add another option
{!! Form::checkbox('is_required', 1, null, ['id' => 'is_required']) !!} {!! Form::label('is_required', 'Make this a required question') !!}
@foreach ($event->tickets as $ticket)
@endforeach
{!! Form::close() !!}
Close Create Question