@stack('actions_td_start') @stack('actions_button_start') @stack('actions_button_end') @stack('actions_td_end') @stack('name_td_start') @stack('name_input_start') {!! $errors->first('item.name', '

:message

') !!} @stack('name_input_end') @stack('name_td_end') @stack('quantity_td_start') @stack('quantity_input_start') {!! $errors->first('item.quantity', '

:message

') !!} @stack('quantity_input_end') @stack('quantity_td_end') @stack('price_td_start') @stack('price_input_start') {{ Form::moneyGroup('name', '', '', ['required' => 'required', 'v-model' => 'row.price', 'data-item' => 'price', 'currency' => $currency, 'dynamic-currency' => 'currency', 'change' => 'row.price = $event; onCalculateTotal'], 0.00, 'text-right input-price') }} {!! $errors->first('item.price', '

:message

') !!} @stack('price_input_end') @stack('price_td_end') @stack('taxes_td_start') @stack('tax_id_input_start') @stack('tax_id_input_end') @stack('taxes_td_end') @stack('total_td_start') @stack('total_input_start') @if (empty($item) || !isset($item->total)) @money(0, $currency->code, true) @else @money($item->total, $invoice->currency_code, true) @endif @stack('total_input_end') @stack('total_td_end')