```php public static function form(Form $form): Form { return $form // ->extraAttributes(['max-width' => '100%']) ->schema([ Split::make([ Section::make([ TextInput::make('title'), Textarea::make('content'), ]), Section::make([ Toggle::make('is_published'), Toggle::make('is_featured'), ])->grow(false), ])->from('md') ]); } ```