{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %}Rental Owner Wallet Top-up{% endblock %} {% block content %}
Rental Owner Wallet

Top Up Your Wallet

Add funds to your Rental Owner wallet so you can pay featured profile fees, listing visibility upgrades, rental-related service charges, and other eligible platform payments.

Account

{{ owner.user.get_full_name|default:owner.user.username }}

Wallet Type

{{ account_label|default:"Rental Owner Wallet" }}

Current Balance

USD {{ wallet.balance_usd|floatformat:2 }}

Top-up Details

Enter the amount you want to add to your wallet and choose your preferred payment method.

{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.amount_usd }} {% for error in form.amount_usd.errors %}
{{ error }}
{% endfor %}
{% for error in form.payment_method.errors %}
{{ error }}
{% endfor %}
Important: Wallet top-up payments are credited to your Rental Owner wallet only after payment confirmation. You can later use your wallet balance for eligible rental platform payments.

Wallet Summary

Your wallet helps you manage future rental owner payments more conveniently.

Available Balance USD {{ wallet.balance_usd|floatformat:2 }}
Wallet Status {% if wallet.is_active %} Active {% else %} Inactive {% endif %}
Profile Type Rental Owner
Minimum Top-up USD 5.00

What can wallet funds be used for?

Wallet funds can support eligible Rental Owner payments.

  • Rental Owner featured or premium profile fee.
  • Featured rental listing visibility upgrades.
  • Rental-related service charges where wallet usage is enabled.
  • Other eligible Rental Owner payments approved by the platform.

Quick Links

Continue managing your Rental Owner account.

{% endblock %}