must be a file of type: image/*.

I don't understand what I'm doing wrong, I get this error when I try to upload an image:

FileUpload::make('logo')
    ->disk('s3_company')
    ->image()
    ->downloadable(),

  protected $fillable = [
      'name',
      'website',
      'logo',
      'data_in',
      'data_out',
      'slug'
  ];

A message appears in the image that the upload has been completed.

I created the element without the images and it created the record. I edited it, loaded the same images and it loaded them without any problems.... Any ideas?
image.png
Was this page helpful?