Forms\Components\TextInput::make('test')
->maxLength(255),
Forms\Components\TextInput::make('name')
->required()
->maxLength(255)
->live(onBlur: true)
->afterStateUpdated(function ($state, Set $set) {
$set('test', $state);
}),
Forms\Components\TextInput::make('test')
->maxLength(255),
Forms\Components\TextInput::make('name')
->required()
->maxLength(255)
->live(onBlur: true)
->afterStateUpdated(function ($state, Set $set) {
$set('test', $state);
}),