minor fixes
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
<div class="row">
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
@include('components.form.select', [
|
||||
@include('components.form.datepicker', [
|
||||
'label' => 'Date',
|
||||
'name' => 'date',
|
||||
'value' => $invoice_payment['date'] ?? null,
|
||||
])
|
||||
</div>
|
||||
<div class="col-6">
|
||||
@include('components.form.select', [
|
||||
'label' => 'Règlement',
|
||||
'name' => 'payment_type',
|
||||
'list' => $payment_types ?? [],
|
||||
@@ -8,8 +15,10 @@
|
||||
'class' => 'select2',
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
@include('components.form.input', [
|
||||
@include('components.form.inputs.money', [
|
||||
'label' => 'Montant',
|
||||
'name' => 'amount',
|
||||
'value' => $invoice_payment['amount'] ?? null,
|
||||
|
||||
Reference in New Issue
Block a user