Important: the default upload panel has the most basic setup. It can't keep uploaded images across user sessions, and it doesn't return images to the backend. Instead it injects images as base64 string directly into the design, which may affect performance. It is highly recommended to use your own version of an upload panel.
How to implement upload section?
Upload
section may very work similar to Images Section. You just need to implement several API endpoints on your backend to allow:
Loading list of user images
Uploading new image
Deleting image
The example below doesn't use real server to implement this function. It just uses local storage to store images. But you can use it as a starting point.