Basic Product Info
{!! Form::label('stock_status','Status') !!} {!! Form::select('stock_status' , ['in-stock' => 'In Stock','special-order' => 'Special Order','out-of-stock' => 'Out of Stock','discontinued' =>'Discontinued'] ,$product->stock_status, ['class' => 'form-control']) !!}
{!! Form::label('brand_id','Brand') !!} {!! Form::select('brand_id', $brands, $product->brand_id, [ 'class' => 'form-control' ,'placeholder' => 'Select', 'id' => 'ecommerce_brand']) !!}
{!! Form::label('basic_sku','SKU') !!} {!! Form::text('basic_sku' , $product->id > 0 ? productMetaField($product->id,'basic_sku') : '' , ['class' => 'form-control','placeholder' => 'SKU']) !!}
{!! Form::label('weight','Weight') !!} {!! Form::text('weight' , $product->id > 0 ? productMetaField($product->id,'weight') : '', ['class' => 'form-control','placeholder' => 'Weight']) !!}
{!! Form::label('weight_class','Weight Class') !!} {!! Form::select('weight_class' , ['Ounce' => 'Ounce' , 'Pound' => 'Pound' ,'Gram' => 'Gram','Kilogram' => 'Kilogram'],$product->id > 0 ? productMetaField($product->id,'weight_class') : '', ['class' => 'form-control','placeholder' => 'Select']) !!}
@if($product->id > 0 and $product->option()->count() > 0) @else
{!! Form::label('inventory','Inventory') !!} {!! Form::number('inventory' , $product->id > 0 ? App\ProductStock::find_it($product->id) : '' , ['class' => 'form-control','placeholder' => 'Inventory','required'=>'true']) !!}
@endif
{!! Form::label('video','Video') !!} {!! Form::text('video' , $product->id > 0 ? productMetaField($product->id,'video') : '' , ['class' => 'form-control','placeholder' => 'Video','required'=>'true']) !!}
{!! Form::label('consumer_description','Consumer Description') !!} {!! Form::text('consumer_description' , $product->id > 0 ? productMetaField($product->id,'consumer_description') : '' , ['class' => 'form-control','placeholder' => 'Consumer Description','required'=>'false']) !!}
{!! Form::label('','Feed ID :'. $product->feed_id) !!}