@if (isset($row)) @foreach ($row->ProductOption()->where('group', 'specification')->get() as $item)
{!! Form::text('features[0][title][ar]', $item->getTranslation('title', 'ar'), ['class' => 'form-control feat_title_ar' , 'placeholder' => __('translation.title') . ' ' . __('translation.ar')]) !!}
{!! Form::text('features[0][title][en]', $item->getTranslation('title', 'en'), ['class' => 'form-control feat_title_en' , 'placeholder' => __('translation.title') . ' ' . __('translation.en')]) !!}
{!! Form::text('features[0][value][ar]', $item->getTranslation('value', 'ar'), ['class' => 'form-control feat_value_ar', 'step' => 'any' , 'placeholder' => __('translation.o_value') . ' ' . __('translation.ar')]) !!}
{!! Form::text('features[0][value][en]', $item->getTranslation('value', 'en'), ['class' => 'form-control feat_value_en', 'step' => 'any' , 'placeholder' => __('translation.o_value') . ' ' . __('translation.en')]) !!}
@endforeach @endif