set TextInput placeholder attribute live from other field

Having this
$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.')

How can I update the placeholder attribute live?
Was this page helpful?