Why mine spatie library is not working

Hi everyone i have a problem with spatie, i followed the docs and i can not figure out why mine spatie librabry is not working I tried to upload file but it does not store into db.
Down bellow is mine code and settings for spatie
---Form
SpatieMediaLibraryFileUpload::make('image')
                    ->responsiveImages()
                    ->conversion('thumb'), 

---Mine Resource
public static function form(Form $form): Form
    {
        return $form
            ->schema([
                Tabs::make()->schema(Testimonial::getForm())
            ])
            ->model(Testimonial::class)
            ->columns(1);
    }

---Mine model

class Testimonial extends Model implements HasMedia
{
    use ImageTrait, ContentRestyleTrait, InteractsWithMedia;
Was this page helpful?