mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
21 lines
892 B
PHP
21 lines
892 B
PHP
<div class="row mb-3">
|
|
<label :for="'source_' + index"
|
|
class="col-sm-1 col-form-label d-none d-sm-block">
|
|
<em title="{{ __('firefly.source_account') }}" class="fa-solid fa-arrow-left"></em>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input type="text"
|
|
:class="{'is-invalid': transaction.errors.source_account.length > 0, 'form-control': true, 'ac-source': true}"
|
|
:id="'source_' + index"
|
|
x-model="transaction.source_account.alpine_name"
|
|
:data-index="index"
|
|
@changed="changedSourceAccount"
|
|
placeholder="{{ __('firefly.source_account') }}">
|
|
<template x-if="transaction.errors.source_account.length > 0">
|
|
<div class="invalid-feedback"
|
|
x-text="transaction.errors.source_account[0]">
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|