f{{ Form::open(['route' => 'Admin.Shop.InvoicePayments.store', 'id' => 'invoice_payment-form', 'autocomplete' => 'off']) }}
@include('components.form.datepicker', [ 'label' => 'Date', 'name' => 'date', 'value' => $invoice_payment['date'] ?? null, ])
@include('components.form.select', [ 'label' => 'Règlement', 'name' => 'payment_type', 'list' => $payment_types ?? [], 'value' => $invoice_payment['payment_type'] ?? null, 'class' => 'select2', ])
@include('components.form.inputs.money', [ 'label' => 'Montant', 'name' => 'amount', 'value' => $invoice_payment['amount'] ?? null, ])
@include('components.form.input', [ 'label' => 'Référence', 'name' => 'reference', 'value' => $invoice_payment['reference'] ?? null, ])