$form // *main form
->schema
TextInput::make('first_form_value')
Forms\Components\Actions([
Forms\Components\Actions\Action::make() // *second form
->form([
Forms\Components\Actions([
Forms\Components\Actions\Action::make() // *third form
->form([
TextInput::make('third_form_value')
])
->action([ fn(Get $get,Set $set)=>self::setValue($get,$set) ]) // *set main form value
])
])
->action([
])
])
$form // *main form
->schema
TextInput::make('first_form_value')
Forms\Components\Actions([
Forms\Components\Actions\Action::make() // *second form
->form([
Forms\Components\Actions([
Forms\Components\Actions\Action::make() // *third form
->form([
TextInput::make('third_form_value')
])
->action([ fn(Get $get,Set $set)=>self::setValue($get,$set) ]) // *set main form value
])
])
->action([
])
])