return $form
->schema([
//user table field...
...
Fieldset::make('Metadata')
->relationship('metadata')
->schema([
Forms\Components\TextInput::make('experience')
->required()
->maxLength(255),
]),
return $form
->schema([
//user table field...
...
Fieldset::make('Metadata')
->relationship('metadata')
->schema([
Forms\Components\TextInput::make('experience')
->required()
->maxLength(255),
]),