{!! Form::open(['url' => route('postCreateEventQuestion', ['event_id'=>$event->id]), 'id' => 'edit-question-form', 'class' => 'ajax']) !!}

@lang("Question.create_question")

{!! Form::text('title', '', [ 'id' => 'question-title', 'class' => 'form-control', 'placeholder' => trans("Question.question_placeholder"),//'e.g. Please enter your full address?', ]) !!}

@lang("Question.question_options")

@lang("Question.add_another_option")
{!! Form::checkbox('is_required', 'yes', false, ['data-toggle' => 'toggle', 'id' => 'is_required']) !!} {!! Form::label('is_required', trans('Question.make_this_a_required_question')) !!}

@lang("Question.require_this_question_for_ticket(s)"):

@foreach ($event->tickets as $ticket)
@endforeach
{!! Form::button(trans("basic.cancel"), ['class'=>"btn modal-close btn-danger",'data-dismiss'=>'modal']) !!} {!! Form::submit(trans("ManageEvent.save_question"), ['class'=>"btn btn-success"]) !!}
{!! Form::close() !!}