@mindhunter You are using the wrong operator. In JS, the concatenation operator is +, but in PHP, it is .. To make your code above work, you would just have to update it to how it looks below.
<div class="latest-news-img"
style="background: url({{ URL::asset('Images/'.$post->image) }}) no-repeat center top; background-size: cover;">
</div>