Multiple issues with file upload

What seems to be the problem:

  1. File input is not showing again after upload success
  2. 6 exceptions being logged with each upload (although the file gets uploaded)

Steps to Reproduce:

  1. Follow the documentation page to create simple file upload
  2. Try uploading a file

Are you using the latest version of Livewire:

No, using v 1.3.5

Do you have any screenshots or code examples:

laravel.log: https://pastebin.com/uTSYXvnn

Blade: https://pastecode.io/s/J3PCKstR08
Controller: https://pastecode.io/s/31q9KFU1Wz

After testing on a fresh installation I found the same issue still exists.
Done some more debugging and found that the exception is caused by line #111 in vendor/livewire/livewire/src/ComponentConcerns/HandlesActions.php

I was able to work around the issue by overriding the resolveActionParameters method from the livewire component file.

Changed the method to simply return a collection of $params

protected function resolveActionParameters($method, $params)
{
    return collect($params);
}

So far this has prevented the excesive logging of exceptions and didn’t break any livewire functionality.