@extends('layouts.theme') @section("title","Home") @section('style') @endsection @section('content')
@include('alertsInfo')
@if (Auth::user()->hasRole('Super Admin')) @include('admin-dashboard') @include('user/profile') @elseif(Auth::user()->hasRole('Company')) @include('company-dashboard') @endif
@endsection @section('script') @endsection