I Have a Form in wich I upload documents. It works well.When using Update action, I need to see what documents have been uploaded, keeping the possibility to add more documents.How to?
Discussion posts and replies are publicly visible
For adding more documents, you can use file Upload components and to show what document has been uploaded you can store the document id into the database and while showing fetch the id from DB and show the document name for the document id into the front end. you can use the download document link as well if you want to download it as well.