> ## Documentation Index
> Fetch the complete documentation index at: https://docs.formbox.app/llms.txt
> Use this file to discover all available pages before exploring further.

# File Uploads

> Store, download, and share files collected with your Formbox forms.

## Accepting Files

You can upload files from your HTML form using Formbox. Each file can be up to 5MB in size.

Enabling your Formbox forms to accept file uploads is easy. Just add `enctype="multipart/form-data"` to your form tag, and your ready to start collecting files on your submissions.

<Note>We only allow one file per submission right now.</Note>

### Single input example

```html theme={null}
<form
  accept-charset="UTF-8"
  action="https://api.formbox.app/s/{your_form_id}"
  enctype="multipart/form-data"
  method="POST"
>
  ...
  <input type="file" name="resume" />
  ...
</form>
```
