I upload all user files to directory:
/resources/app/uploads/
I try to get image by full path:
http://localhost/resources/app/u
Try {{asset('path/to/your/image.jpg')}} if you want to call it from your blade
{{asset('path/to/your/image.jpg')}}
or
$url = asset('path/to/your/image.jpg'); if you want it in your controller.
$url = asset('path/to/your/image.jpg');
Hope it helps =)