@php $loggedInUser = \Auth::user(); $userRole = \Session::get('role'); $userPermission = \Session::get('userPermission'); $organization_type = \Session::get('organization_type'); $currentOrganization = \Session::get('currentOrganization'); $currentOrganizationName = \Session::get('currentOrganizationName'); @endphp @stack('headerScripts')
@include('layouts.cmsSidebar')

Complaint Management System

    @if(isset($organization_type) && $organization_type == 'MULTIPLE') @php $userOrganizations = \Session::get('userOrganizations'); @endphp
  • Current Organization : {{ $currentOrganizationName }}
  • @endif {{-- --}} @if(isset($userPermission['is-css']))
  • CSS
  • @endif @php $roleDomain = \Session::get('roleDomain'); @endphp
@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif @if($errors->any())
@forelse ($errors->all() as $validation_error)

{{ $validation_error }}

@empty {{-- empty expr --}} @endforelse
@endif @yield('content')
{{-- --}} @stack('footerScripts')