How can I insert payments logos in the footer for opencart 3.X?

How can I insert payments logos in the footer for opencart 3.X?

On
Edit footer template file catalog/view/theme/default/template/common/footer.tpl
Change
<p><?php echo $powered; ?></p>
to
<p><?php echo $powered; ?></font><img src="/image/yourimage path/yourimagename.png" width="480" height="40" class="img-responsive" alt="payment methods" style="float:right"></p>
May need to vary width\height as required
you can Edit Footer Template file : catalog\view\theme\default\template\common\footer.twig
Replace
to
I think it will be working fine.