2022-01-29 14:15:34 +01:00
|
|
|
<div class="modal-dialog">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<form style="display: inline;" id="remove" action="{{ route('piggy-banks.remove', piggyBank.id) }}" method="POST">
|
|
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
|
|
|
|
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<button type="button" class="close" data-dismiss="modal"><span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
|
|
|
|
</button>
|
|
|
|
|
<h4 class="modal-title">{{ trans('firefly.remove_money_from_piggy_title', {name: piggyBank.name}) }}</h4>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="modal-body">
|
2024-12-14 17:32:03 +01:00
|
|
|
{% for account in accounts %}
|
2022-01-29 14:15:34 +01:00
|
|
|
<p>
|
2024-12-14 17:32:03 +01:00
|
|
|
{{ account.account.name }}: {{ 'max_amount_remove'|_ }}: {{ formatAmountByCurrency(piggyBank.transactionCurrency, account.saved_so_far) }}.
|
2022-01-29 14:15:34 +01:00
|
|
|
</p>
|
|
|
|
|
<div class="input-group">
|
2024-12-14 17:32:03 +01:00
|
|
|
<div class="input-group-addon">{{ piggyBank.transactionCurrency.symbol|raw }}</div>
|
|
|
|
|
<input step="any" class="form-control" id="amount_{{ account.account.id }}" autocomplete="off" name="amount[{{ account.account.id }}]" max="{{ account.saved_so_far }}"
|
2022-01-29 14:15:34 +01:00
|
|
|
type="number">
|
|
|
|
|
</div>
|
2024-12-14 17:32:03 +01:00
|
|
|
{% endfor %}
|
2022-01-29 14:15:34 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ 'close'|_ }}</button>
|
|
|
|
|
<button type="submit" class="btn btn-primary">{{ 'remove'|_ }}</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|