Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

beracah.kings's avatar

Multiple File Upload in Inertia App

Is there an option to upload multiple files in inertia / react

0 likes
1 reply
Tray2's avatar

Of course there is. You just add the multiple attribute to your file input.

<input type="file" name="files" multiple>

Then depending on how you submit it, you add the files selected to your payload.

Please or to participate in this conversation.