set TextInput placeholder attribute live from other field
Having this
How can I update the placeholder attribute live?
How can I update the placeholder attribute live?
$form
->schema([
TextInput::make('title')
->required(),
...
TextInput::make('seo_page_title')
->placeholder('This should reflect the "title" field to indicate default will be "title" if this field is empty.')