@yield('seo') @section('seo') @endsection @include('frontend.layouts.header')
@if(Auth::check() && Auth::user()->role === 'recruiter')
...

RECRUITER

...
@endif @if(Auth::check() && Auth::user()->role === 'user')
...

APPLICANTS

...
@endif
...

MY ACCOUNTS

...
@yield('content')
...

MY ACCOUNTS

...
@include('frontend.layouts.footer') @yield('before-js') @yield('after-js')