{{ Form::label( 'name', trans('productvariables.name'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('name', null, ['class' => 'form-control round', 'placeholder' => trans('productvariables.name')]) }}
{{ Form::label( 'code', trans('productvariables.code'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('code', null, ['class' => 'form-control round', 'placeholder' => trans('productvariables.code')]) }}
{{ Form::label( 'type', trans('productvariables.type'),['class' => 'col-lg-2 control-label']) }}
{{ Form::select('type', array('0'=>trans('productvariables.standard_type'),'1'=>trans('productvariables.multiple_type')), null,['id'=>'c_type','class' => 'form-control round']) }}
Standard Type unit can be selected during product creation , while Multiple Unit can be selected during billing.
Standard Type Unit Example is KG
Multiple Type Unit Example is Box with value of 50
During billing if product X has Kg Unit but sub-unit can be Box so KG*BOX=50KG
@section("after-scripts") @endsection