How can I get Resource Form inside the action ->form ?

I have the following code:

Tables\Actions\ReplicateAction::make('replicate')
                    ->iconButton()
                    ->excludeAttributes(['category_title'])
                    ->form(function () {

                    })


I was wondering how would I get data from

public static function form(Form $form): Form
    {
        return $form


I could do
static::form(...)
but not sure what to input as a Form variable here. Please advice what's the best approach in reusing form schema. Thanks.
Was this page helpful?