@include('admin/shared/input', ['name' => 'name', 'label' => __($translatePrefix . '.draft.name'), 'value' => $item->name])
@include('admin/shared/input', ['name' => 'quantity', 'label' => __($translatePrefix . '.draft.quantity'), 'value' => $item->quantity, 'min' => 1, 'step' => 1])
@include('admin/shared/input', ['name' => 'unit_price_ttc', 'label' => __($translatePrefix . '.draft.unitprice') . ' (TTC)', 'value' => $item->unit_price_ttc ?? 0, 'min' => 0, 'step' => 0.01])
@include('admin/shared/input', ['name' => 'unit_price_ht', 'label' => __($translatePrefix . '.draft.unitprice') . ' (HT)', 'value' => $item->unit_price_ht ?? 0, 'min' => 0, 'step' => 0.01])
@include('admin/shared/input', ['name' => 'unit_setup_ttc', 'label' => __($translatePrefix . '.draft.unitsetupfees') . ' (TTC)', 'value' => $item->unit_setup_ttc ?? 0, 'min' => 0, 'step' => 0.01])
@include('admin/shared/input', ['name' => 'unit_setup_ht', 'label' => __($translatePrefix . '.draft.unitsetupfees') . ' (HT)', 'value' => $item->unit_setup_ht ?? 0, 'min' => 0, 'step' => 0.01])
@include('shared/textarea', ['name' => 'description', 'label' => __($translatePrefix . '.draft.description'), 'value' => $item->description ?? '', 'rows' => 3])
@include('admin/shared/select', ['name' => 'coupon_id', 'label' => __('coupon.coupons'), 'options' => $coupons, 'value' => $item->couponId() ?? 'none'])
{!! $item->renderHTML(true) !!}