@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($direct_scale)
{!! Form::label('import_id','Direct Scale Name') !!}
{!! Form::text('import_id' , $option->import_id , ['class' => 'form-control','placeholder' => 'Direct Scale Name','required' => true]) !!}
@endif
@if($option->id > 0)
@endif