Hi @oscaribarra25 ,
Uploading images using Livewire can be very frustrating when it comes to https protocol.
I've been using Livewire for about 2 years in production system so hopefully the below will help you.
In App\Providers\AppServiceProvider add the following if statement to your boot function like so...
public function boot()
{
if($this->app->environment('production') || $this->app->environment('staging')) {
\URL::forceScheme('https');
}
}
This will force all https request for staging and production.
In App\Http\Middleware\TrustProxies make sure the protected proxies is set like below
protected $proxies = '*';
Hopefully this will fix your problem.
If it does not let me know what version of Livewire your using and the exact error and I'll try and help further.
Best of Luck with it!
Regards
Mark