I am using a laravel file manager for uploading an images to the server. In local everything works file but when in the server it always shows [ object object ] with blank images. But it gets uploaded.
Also, there was a warning message showing "required imgick or gd extension"
code
<div class="input-group">
<span class="input-group-btn">
<a id="image" data-input="thumbnail" data-preview="holder"
class="btn btn-primary">
<i class="fa fa-picture-o"></i> Choose
</a>
</span>
<input id="thumbnail" class="form-control" type="text" name="thumbnail_image">
</div>
$('#image').filemanager('image');