Skip to main content

Documentation Index

Fetch the complete documentation index at: https://filamentphp.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Introduction

The hidden component allows you to create a hidden field in your form that holds a value.
use Filament\Forms\Components\Hidden;

Hidden::make('token')
Please be aware that the value of this field is still editable by the user if they decide to use the browser’s developer tools. You should not use this component to store sensitive or read-only information.