# Hidden

Creates a hidden field

****

- Read more: <https://getkirby.com/docs/guide/blueprints/fields>
- Source: <https://github.com/getkirby/kirby/tree/5.5.3/config/fields/hidden.php>

****

The hidden field allows storing values in the content file that are not visible to users in the Panel. This can be useful to store additional information for a page, which is only available to the developer or editors who have access to the filesystem. Such a `hidden` field can be edited only either directly in the filesystem or programmatically via a script.

## Example

```yaml
fields:
  title:
    label: Title
    type: title
  text:
    label: Text
    type: textarea
  notes:
    type: hidden
```