Dimensions
{{--
--}} {{--

Product Data

--}} {{--
--}}
{!! Form::label('length','Product Length') !!} {!! Form::number('length' , $product->id > 0 ? productMetaField($product->id,'length') : '' , ['class' => 'form-control','placeholder' => 'Length']) !!}
{!! Form::label('width','Product Width') !!} {!! Form::number('width' , $product->id > 0 ? productMetaField($product->id,'width') : '' , ['class' => 'form-control','placeholder' => 'Width']) !!}
{!! Form::label('height','ProductHeight') !!} {!! Form::number('height' , $product->id > 0 ? productMetaField($product->id,'height') : '' , ['class' => 'form-control','placeholder' => 'Height']) !!}
{!! Form::label('length_class','Length Class') !!} {!! Form::select('length_class' , ['cm' => 'Centimeter' , 'mm' => 'Millimeter' ,'in' => 'Inch'],$product->id > 0 ? productMetaField($product->id,'length_class') : '', ['class' => 'form-control','placeholder' => 'Select']) !!}
{!! Form::label('weight','Product Weight') !!} {!! Form::text('weight' , $product->id > 0 ? productMetaField($product->id,'weight') : '', ['class' => 'form-control','placeholder' => 'Weight']) !!}
{!! Form::label('weight_class','Product 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']) !!}
{!! Form::label('unit_measure','Unit of Measure') !!} {!! Form::select('unit_measure' , ['kg' => 'Kilogram' , 'gr' => 'Gram' ,'lb' => 'Pound','oz' => 'Ounce','cm' => 'Centimeter' , 'mm' => 'Millimeter' ,'in' => 'Inch','ft' => 'Foot','yd' => 'Yard'],$product->id > 0 ? productMetaField($product->id,'unit_measure') : '', ['class' => 'form-control','placeholder' => 'Select']) !!}
{!! Form::number('product_volume' , $product->id > 0 ? productMetaField($product->id,'product_volume') : '', ['class' => 'form-control','placeholder' => 'Product Volume']) !!}