I am working with Laravel and created a master.blade view file to use on all my pages. The master view yields mini-views inside. On most mini-views everything works fine, but on some, I don't get the background image from the master. The problem is I still get the nav-bar and the footer on those pages, which means they do recognize the master view. What can be the reason for that?
On all pages I use the exact same way to include and to yield:
@extends('master')
@section('content')
@endsection
Thanks alot!