@extends('layouts.master-without-nav') @section('title') @lang('translation.Error_404') @endsection @section('body')
@endsection @section('content')@php $role = auth()->user()->role->name ?? 'Guest'; @endphp @switch($role) @case('Admin') Looks like you're lost, Admin! Let's get you back home. @break @case('Manager') Manager, the page you are looking for isn't available. @break @case('Staff') Oops! Staff area not found. @break @default This page doesn't exist. @endswitch