Files
firefly-iii/resources/views/v2/partials/form/transaction/notes.blade.php

14 lines
488 B
PHP
Raw Normal View History

2024-01-04 07:26:45 +01:00
@if(true === $optionalFields['notes'])
2024-01-03 19:34:50 +01:00
<div class="row mb-3">
2024-01-04 07:26:45 +01:00
<label :for="'notes_' + index" class="col-sm-1 col-form-label d-none d-sm-block">
<em title="{{ __('firefly.notes') }}" class="fa-solid fa-font"></em>
2024-01-03 19:34:50 +01:00
</label>
<div class="col-sm-10">
2024-01-04 07:26:45 +01:00
<textarea class="form-control"
:id="'notes_' + index"
x-model="transaction.notes"
placeholder="{{ __('firefly.notes') }}"></textarea>
2024-01-03 19:34:50 +01:00
</div>
</div>
2024-01-04 07:26:45 +01:00
@endif