@if (module_is_active('AIAssistant'))
@include('aiassistant::ai.generate_ai_btn', [
'template_module' => 'product',
'module' => 'ProductService',
])
@endif
{{ Form::label('tax_id', __('Tax'), ['class' => 'form-label']) }}
{{ Form::select('tax_id[]', $tax, !empty($productService->tax_id)?explode(',', $productService->tax_id):'', ['class' => 'form-control choices tax_data', 'id' => 'choices-multiple1', 'multiple']) }}
{{ Form::label('description', __('Description'), ['class' => 'form-label']) }}
{!! Form::textarea('description', !empty($productService->description)?$productService->description:'', ['class' => 'form-control', 'rows' => '2', 'placeholder' => __('Enter Description')]) !!}
@if (module_is_active('CustomField') && !$customFields->isEmpty())
@include('custom-field::formBuilder')
@endif
@stack('add_column_in_productservice')
{{ Form::label('unit_id', __('Unit'), ['class' => 'form-label']) }}
{{ Form::select('unit_id', $unit, !empty($productService->unit_id)?$productService->unit_id:'', ['class' => 'form-control', 'required' => 'required']) }}
@if($type != 'service')
{{ Form::label('quantity', __('Quantity'), ['class' => 'form-label']) }}
{{ Form::number('quantity', !empty($productService->quantity)?$productService->quantity:'0', ['class' => 'form-control', 'min' => '0','required' => 'required', 'placeholder' => __('Enter Quantity')]) }}
@endif