Is it possible to open modal with form fields in hint action?
I've tried but it doesn't open the moda with form (text input):
TextInput::make('name')->live(debounce: 500)->label('name')->hintAction(
Action::make('generate')
->icon('heroicon-o-arrow-path')
->form([
TextInput::make('Keywords')->nullable(),
])->action(function (Set $set) {
// do something
})
)->required()