ecomm-store/src/views/lib/modals/credit.twig
count-null 35971fd696 save
2025-03-04 21:56:40 -05:00

33 lines
947 B
Twig

<div>
<div class="text-xl font-semibold mb-4 text-center">
You have
<strong>
{{ '$' ~ (balance.cents / 100) | number_format(2, '.', ',') }}
USD
</strong>
in store credit
</div>
<div class="text-lg font-semibold mb-4">
Why do I have store credit?
</div>
<ul class="list-disc pl-6 mb-4">
<li>
You may have received credit as a refund, dispute resolution, or promotional event.
</li>
<li>
You can also reload your store credit by ordering gift cards.
</li>
</ul>
<div class="text-lg font-semibold mb-4">
What can I do with store credit?
</div>
<ul class="list-disc pl-6">
<li>
You may spend store credit at checkout.
</li>
<li>
Your subscriptions and recurring purchases can also be paid with store credit.
</li>
</ul>
</div>