How do I add a payment icon/logo at the bottom of my website - Dawn theme

I have opened other payment methods, but all I have is the paypal icon at the bottom of my website.

I would like to add ICONS for other payment methods at the bottom of my website.

Like this:

@Edison18831
Hii,
can you please share your store URL

@Edison18831
Hii,
Its Customization work so
can you please share your store details

My store URL:

https://www.yeahmoment.com/

@Edison18831

  1. From your Shopify admin, go to Online Store > Themes.

  2. Find the theme you want to edit, and then click Actions > Edit code.

  3. In the Sections directory, click footer.liquid. If your theme doesn’t include this file, then click theme.liquid in the Layout directory.

  4. Find the following code in the file:

{% for type in shop.enabled_payment_types %}

Replace it with:

{% assign enabled_payment_types = 'visa,master,american_express,paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}

I didn’t find this code “{% for type in shop.enabled_payment_types %}” in footer.liquid

I found it, and it worked. Thank you very much.