Different Form in the same resource

It may be a silly question but how can I change the form in the edit page of a resource? I'm going to use the same one I got defined in the resource.php but with a little more info.
Solution
I mean, fields 3 and 4 will be visible only in the edit form..
Forms\Components\TextInput::make('field1'),
Forms\Components\TextInput::make('field2'),
Group::make([
    Forms\Components\TextInput::make('field3'),
    Forms\Components\TextInput::make('field4')
])->visibleOn('edit')
Was this page helpful?