My question is: how and where must I add all the readonly fields I need?
Solution
Found!
because I don't want to edit, I didn't add inputs to form .
I added and all is working
public static function form(Form $form): Form { return $form ->schema([ TextInput::make('name')->label('nome'), TextInput::make('description')->label('descrizione'), ]); }
public static function form(Form $form): Form { return $form ->schema([ TextInput::make('name')->label('nome'), TextInput::make('description')->label('descrizione'), ]); }