I am trying to save my private file on multiple servers (Reason: limited storage on each server) using an API (and FTP).
I want to use the Filament FileUpload component in my form, but I don’t want the component to store my file automatically in local storage (I will handle that myself).
The problem is that the FileUpload component doesn’t display the default image or file when using an external URL.
FileUpload::make('image')
->image()
->imageEditor()
->circleCropper()
->imageResizeTargetWidth(512)
->imageResizeTargetHeight(512)
->imageResizeMode('cover')
->imageCropAspectRatio('1:1')
->imagePreviewHeight('100')
->getUploadedFileUsing(fn () => ['/200/300']),
How can I fix this?