FilePond modal position
I've a single form that only holds an avatar file upload, like this:
And I use it in my blade:
The avatar form is positioned the way I want it (see first screenshot). But the modal when editing the profile image is positioned completley wrong. It looks like its also affected by the
relative
and absolute
classes of the containers (see second screenshot).
Is there a way to keep the design as is, but render the filepond modal somewhere else? Or can I fix this with another positioning trick?Solution:Jump to solution
Huraay! I've fixed it myself by putting the form outside of the header image:
```html
<form wire:submit.prevent="submit" x-cloak
x-on:form-processing-started="isUploadingFile = true"...
2 Replies