{{$product->product_name}} - {{$product->sub_sku}}

@if(!auth()->user()->can('edit_product_price_from_sale_screen'))
@lang('sale.unit_price'): {{@num_format(!empty($product->unit_price_before_discount) ? $product->unit_price_before_discount : $product->default_sell_price)}}
@endif
@if(!empty($discount))

{!! __('lang_v1.applied_discount_text', ['discount_name' => $discount->name, 'starts_at' => $discount->formated_starts_at, 'ends_at' => $discount->formated_ends_at]) !!}

@endif
@if(!empty($warranties))
{!! Form::select("products[$row_count][warranty_id]", $warranties, $warranty_id, ['placeholder' => __('messages.please_select'), 'class' => 'form-control']); !!}
@endif

@lang('lang_v1.sell_line_description_help')