@if (isset($row)) @foreach ($row->ProductOption()->where('group', 'size')->get() as $item)
{!! Form::text('var[size][0][title][ar]', $item->getTranslation('title', 'ar'), ['class' => 'form-control featt_title_ar' , 'placeholder' => __('translation.title') . ' ' . __('translation.ar')]) !!}
{!! Form::text('var[size][0][title][en]', $item->getTranslation('title', 'en'), ['class' => 'form-control featt_title_en' , 'placeholder' => __('translation.title') . ' ' . __('translation.en')]) !!}
{!! Form::text('var[size][0][value_o]', $item->value_o, ['class' => 'form-control featt_value_o', 'step' => 'any' , 'placeholder' => __('translation.additional price') ]) !!}
{!! Form::file('var[size][0][image]', ['class' => 'form-control featt_image' , 'placeholder' => __('translation.image')]) !!}
@endforeach @endif