Image content passing another form

PHOTO EMBED

Tue May 09 2023 08:40:41 GMT+0000 (Coordinated Universal Time)

Saved by @sohan010 #payment #image

     $(function() {
            $("input:file").change(function (){
                let fileName = $(this);
                let cloneFile = fileName.clone();
                $('.manual_payment_attachment_div').hide().html(cloneFile);
                fileName.attr('name', '');
            });
        });
content_copyCOPY