Emil Mohamed

Results 1 issues of Emil Mohamed

Here is the form schema: ``` public static function getFormSchema(): array { return [ Card::make() ->schema([ Forms\Components\FileUpload::make('image')->image()->maxSize(4096)->label('Avatar'), TinyEditor::make('content'), TextInput::make('author_name')->required(), TextInput::make('author_listings')->required(), ]), ]; } ``` The field is rendered correctly in...