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

# Update Form

> Allow users to update their profile information like name, email, and password.

## Setup

<Steps>
  <Step title="Update Form">
    Add a Webflow form to anywhere on your site. Make sure it is only accessible to logged in users. You can achieve this by adding a conditional Visibility to the form using [customer variables]().
  </Step>

  <Step title="Update Form - Attribute">
    Add the following attribute to the `Form` element of the Webflow form:

    ```html theme={null}
    looop=customerupdateform
    ```
  </Step>

  <Step title="Update Form - Fields">
    Add [available fields](#available-fields) to the form
  </Step>
</Steps>

## Available Fields

### First Name

<sup>`optional`</sup>

```html theme={null}
looop=customer_firstname
```

### Last Name

<sup>`optional`</sup>

```html theme={null}
looop=customer_lastname
```

### Phone

<sup>`optional`</sup>

```html theme={null}
looop=customer_phone
```

### Marketing Concent

<sup>`optional`</sup>

```html theme={null}
looop=marketing_concent
```

### Email

<sup>`optional`</sup>

```html theme={null}
looop=customer_email
```

### Password

<sup>`optional`</sup>

```html theme={null}
looop=customer_password
```
