{{ Form::label('name', __('messages.report.name').':') }}*
{{ Form::text('name', html_entity_decode($invoice->name), ['class' => 'form-control', 'required']) }}
{{ Form::label('project_id[]', __('messages.invoice.project').':') }}*
{{ Form::label('client', __('messages.invoice.client').':') }}*
{{ Form::select('client_id[]', $invoiceSyncList['clients'], $invoiceSyncList['clientIds'], ['class' => 'form-control', 'required', 'id' => 'clientSelectBox', 'multiple' => true]) }}
{{ Form::label('discount_apply', __('messages.invoice.discount_apply').':') }}*
{{ Form::select('discount_type', $invoiceSyncList['discountType'], isset($invoice->discount_type) ? $invoice->discount_type : null, ['class' => 'form-control', 'id' => 'discountTypeSelect', 'placeholder' => 'Select Discount type','required']) }}
{{ Form::label('notes', __('messages.invoice.notes').':') }}
{{ Form::textarea('notes', isset($invoice->notes) ? $invoice->notes : null, ['class' => 'form-control textarea-sizing invoice-notes']) }}