@if($option->id > 0)
@else
@if(count($types) == 1)
@else
{!! Form::label('type','Type') !!}
{!! Form::select('type' , $types,$option->type , ['class' => 'form-control','placeholder' => 'Select','required' => true]) !!}
@endif
@endif
{!! Form::label('title','Display Name') !!}
{!! Form::text('title' , $option->title , ['class' => 'form-control','placeholder' => 'Display Name','required' => true]) !!}
@if($option->id > 0)
@endif