|
{!! Form::text('option_title[]', $option->option, ["id" => "option$i","class" => "col-xs-10 col-sm-11","rows"=>'1', "required"]) !!}
|
@if(isset($option->image))
@endif
{!! Form::file('option_image_'.$i) !!}
|
@if($data['row']->type == 'single')
@elseif($data['row']->type == 'multiple')
@endif
|
{!! Form::select('option_status[]', ['active' => 'Active', 'in-active' => 'Inactive'], request('status'), ['class' => 'from-control']) !!}
|
|