19 lines
543 B
PHP
19 lines
543 B
PHP
<div class="row">
|
|
<div class="col-6">
|
|
@include('components.form.select', [
|
|
'label' => 'Règlement',
|
|
'name' => 'payment_type',
|
|
'list' => $payment_types ?? [],
|
|
'value' => $invoice_payment['payment_type'] ?? null,
|
|
'class' => 'select2',
|
|
])
|
|
</div>
|
|
<div class="col-6">
|
|
@include('components.form.input', [
|
|
'label' => 'Montant',
|
|
'name' => 'amount',
|
|
'value' => $invoice_payment['amount'] ?? null,
|
|
])
|
|
</div>
|
|
</div>
|