@if(Auth::user()->user_role == 'FRONT')
@include('front.layout.header')
@endif
@if(Auth::user()->user_role == 'ADMIN')
@include('masters.layout.header')
@endif
@if(Auth::user()->user_role == 'FRANCHISEE')
@include('masters.layout.header_franchisee')
@endif
@yield('content')