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

# Uploading files

> Learn how to ingest files in your forms.

### Prerequisites

To get the most out of this guide, you'll need to:

* [Create a Formizee account](https://dashboard.formizee.com)
* [Have a form created](/guides/create-your-first-form)

## 1. Update your form

Update your form to use `enctype='multipart/form-data'` and add a input inside:

```tsx index.html {1,11} theme={"system"}
<form method="post" enctype='multipart/form-data' action="https://api.formizee.com/v1/f/enp_123456">
  <label for="name">
    Name
    <input id="name" autoComplete="name" name="name" />
  </label>
  <label for="email">
    Email
    <input id="email" autoComplete="email" name="email" />
  </label>
  <label for="attachment">
    <input id="attachment" name="attachment" type="file" />
  </label>
  <button type="submit">Submit</button>
</form>
```

## 2. See on your Dashboard

Now if you make a submissions, you should see your attachment on the dashboard.

<Frame>
  <img className="block dark:hidden" src="https://mintcdn.com/formizee/UMqC5saRDgjM1LWR/assets/guides/create-your-first-form/2-light.png?fit=max&auto=format&n=UMqC5saRDgjM1LWR&q=85&s=a6bab1e252c8abe72b682ba6d0ee03fe" width="2836" height="1732" data-path="assets/guides/create-your-first-form/2-light.png" />

  <img className="hidden dark:block" src="https://mintcdn.com/formizee/UMqC5saRDgjM1LWR/assets/guides/create-your-first-form/2-dark.png?fit=max&auto=format&n=UMqC5saRDgjM1LWR&q=85&s=f78cfd560b21c438358786c3fac1a4ca" width="2836" height="1732" data-path="assets/guides/create-your-first-form/2-dark.png" />
</Frame>

***

<Warning>
  ### File Uploads Limitations

  At the moment the files feature has some limitations:

  **Max file size **50 Mb**.**
  Since we are running our infrastructure on the edge, we only support 50 Mb to prevent issues.
  *We have planned to increase this limit in a future.*

  **Multifile inputs are not supported.**
  At the moment uploading multiple files with a single input will result on a single file uploaded (the first selected).
</Warning>
