components([ TextInput::make('name') ->required() ->maxLength(255), TextInput::make('code') ->required() ->maxLength(50) ->unique(ignoreRecord: true), Textarea::make('description') ->rows(3) ->columnSpanFull(), Toggle::make('is_active') ->label('Active') ->default(true) ->required(), ]); } }