{{ $product->name }} ({{ $product->sku }}) {!! Form::select('products[' . $product->id . '][category_id]', $categories, $product->category_id, [ 'placeholder' => __('messages.please_select'), 'class' => 'form-control select2 input-sm category_id', 'style' => 'width: 100%;', ]) !!} {!! Form::select( 'products[' . $product->id . '][sub_category_id]', !empty($sub_categories[$product->category_id]) ? $sub_categories[$product->category_id] : [], $product->sub_category_id, [ 'placeholder' => __('messages.please_select'), 'class' => 'form-control select2 input-sm sub_category_id', 'style' => 'width: 100%;', ], ) !!} {!! Form::select('products[' . $product->id . '][brand_id]', $brands, $product->brand_id, [ 'placeholder' => __('messages.please_select'), 'class' => 'form-control select2 input-sm', 'style' => 'width: 100%;', ]) !!} {!! Form::select( 'products[' . $product->id . '][tax]', $taxes, $product->tax, [ 'placeholder' => __('messages.please_select'), 'class' => 'form-control select2 input-sm row_tax', 'style' => 'width: 100%;', ], $tax_attributes, ) !!} {!! Form::select( 'products[' . $product->id . '][product_locations][]', $business_locations, $product->product_locations->pluck('id'), ['class' => 'form-control select2', 'multiple'], ) !!} @foreach ($product->variations as $variation) @include('product.partials.bulk_edit_variation_row') @endforeach
@lang('lang_v1.variation') @lang('product.default_purchase_price') @lang('product.profit_percent') @show_tooltip(__('tooltip.profit_percent')) @lang('product.default_selling_price') @lang('lang_v1.group_price')