{!! Form::label('default_tax_class', __('woocommerce::lang.default_tax_class') . ':') !!} @show_tooltip(__('woocommerce::lang.default_tax_class_help')) {!! Form::text('default_tax_class',$default_settings['default_tax_class'], ['class' => 'form-control']); !!}
{!! Form::label('product_tax_type', __('woocommerce::lang.sync_product_price') . ':') !!} {!! Form::select('product_tax_type', ['inc' => __('woocommerce::lang.inc_tax'), 'exc' => __('woocommerce::lang.exc_tax') ], $default_settings['product_tax_type'], ['class' => 'form-control']); !!}
{!! Form::label('default_selling_price_group', __('woocommerce::lang.default_selling_price_group') . ':') !!} {!! Form::select('default_selling_price_group', $price_groups, $default_settings['default_selling_price_group'], ['class' => 'form-control select2', 'style' => 'width: 100%;']); !!}
{!! Form::label('sync_description_as', __('woocommerce::lang.sync_description_as') . ':') !!} {!! Form::select('sync_description_as', ['short' => __('woocommerce::lang.short_description'), 'long' => __('woocommerce::lang.long_description'), 'both' => __('woocommerce::lang.both')], !empty($default_settings['sync_description_as']) ? $default_settings['sync_description_as'] : 'long', ['class' => 'form-control select2', 'style' => 'width: 100%;']); !!}