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