Stream_get_meta_data() expects parameter 1 to be resource, bool given

What seems to be the problem: i got this error when i upload image in fresh laravel

Steps to Reproduce:

Are you using the latest version of Livewire: yes

Do you have any screenshots or code examples:

We have the same problem. Do you have already a solution?

Same problem, did you manage to find solution?

i have same problem, i try this,

edit file \vendor\livewire\src\TemporaryUploadedFile.php at line 21

from
$tmpFile = tmpfile();
to
$tmpFile = fopen(Storage::path($this->path),'r');

I hope this helps