# Submit button

The `submitButton` object controls the label and visibility of the form's submit button.

## Schema

| Field | Type | Description |
|  --- | --- | --- |
| `text` | string | Button label |
| `isShow` | boolean | Show or hide the submit button |
| `align` | string | Horizontal alignment (for example, `"center"`, `"left"`, `"right"`) |


```json
"submitButton": {
  "text": "Submit",
  "isShow": true,
  "align": "center"
}
```