{% extends 'base.html' %} {% block content %}

Deposit - {{ account.name }}

Back to Account

Current Balance

{{ balance|currency }}
After Deposit
{{ balance|currency }}
{{ form.hidden_tag() }}
{{ form.date(class="form-control") }} {% if form.date.errors %}
{{ form.date.errors[0] }}
{% endif %}
{{ form.amount(class="form-control", placeholder="0.00", step="0.01", id="amount-input") }} {% if form.amount.errors %}
{{ form.amount.errors[0] }}
{% endif %} Enter the amount to deposit
{{ form.description(class="form-control", placeholder="e.g., Cash deposit, Bank transfer, etc.") }} {% if form.description.errors %}
{{ form.description.errors[0] }}
{% endif %} Brief description of the deposit
{{ form.ref_customer_id(class="form-control") }} {% if form.ref_customer_id.errors %}
{{ form.ref_customer_id.errors[0] }}
{% endif %} Link this deposit to a customer (optional)
{{ form.submit(class_='btn-primary', style='background-color: #059669; border-color: #059669;') }} Cancel
{% endblock %}