TextInput, set default value (from backend)

Currently I have TextInput::make('user.name').
The name field of the user relation already have an value.
However it's not showing in the forms. So how can I make it show?
Solution
Group::make([
    TextInput::make('name')
])
    ->relationship('user')
Was this page helpful?