@extends('layouts.app') @section('content')
@if(auth()->user()->isSuperAdmin()) Manage all companies in the system @elseif(auth()->user()->isPlatformAdmin()) Companies you are authorized to manage @else Your company details and management @endif
{{ $company->email }}
@if($company->phone){{ $company->phone }}
@endif @if($company->website) @endif@if(auth()->user()->isPlatformAdmin()) You haven't been assigned to any companies yet. @elseif(auth()->user()->isSuperAdmin()) No companies have been created yet. @else Your company information is not available. @endif
@if(auth()->user()->isSuperAdmin() || auth()->user()->isPlatformAdmin()) Create First Company @endif