Using $get to get the state of parent form fields in repeaters

Hi all

Is there a way of getting the state of a parent form field in a closure in a repeater field? Eg this doesn't work:

TextInput::make('title')
    ->live(),

Repeater::make('members')
    ->schema([
        TextInput::make('test')
            ->label(function (Get $get) {
                return $get('title');
            })
    ])
Was this page helpful?