Image saved to AWS bucket not displayed on infolist.

Hey all, I have a form with the fileupload:
  Forms\Components\FileUpload::make('banner')
      ->label('Banner')
      ->translateLabel()
      ->image()
      ->acceptedFileTypes(['image/*'])
      ->maxSize(4096)
      ->disk('s3')
      ->directory('events/banners'),


When submitting it seems to be working fine, the problem is that whenever I go to the view page, the image is not displaying. When inspecting, the img element doesn't have an src (<img src style=").
This is what im trying in my infolist:
  ImageEntry::make('banner')
      ->label('Banner')
      ->translateLabel()
      ->disk('s3')
      ->columnSpan(2),

So if anyone knows a possible solution, please let me know. If i should clarify some more, please let me know and I'm happy to do so.
Was this page helpful?