Nested relation form

Hi guys, is it possible to create form with nested relations?
// ClientResource.php

Forms\Components\Section::make()
    ->relationship('entity')
    ->schema([
        // Fields on the entity model
        
        Forms\Components\Section::make()
            ->relationship('address')
            ->schema([
                // Fields on the address model
            ])
    ]),

On my ClientResource I have form like this. My entity model is created, but address model is not. I am not sure, if it is even possible.
Was this page helpful?