components([ TextInput::make('name') ->required() ->maxLength(100), TextInput::make('slug') ->required() ->unique( ignoreRecord: true ) ->maxLength(100), TextInput::make('short_name') ->default(null) ->maxLength(30), ]); } }