@extends('frontend.layouts.app') @section('title', 'Dashboard') @section('content')
@if (Auth::user()->hasRole('super-user') || Auth::user()->hasRole('admin')) @elseif (Auth::user()->roles->isEmpty())

Welcome! {{ Auth::user()->name }}

We're excited to have you here. Enjoy your experience!
Contact Administrator to Assign a Role.

@else

Welcome! {{ Auth::user()->name }}

We're excited to have you here. Enjoy your experience!

@endif
{{-- @if (Auth::user()->hasRole('user')) @if (is_null(Auth::user()->email_verified_at))

Email Verification Required

Please verify your email address to proceed further.

Resend Verification Email
@elseif (!$profileComplete)
@if ($showPopup) @if (!$paymentStatus)

Your payment is incomplete!

Kindly complete the payment before moving to the next step.

@elseif($paymentStatus === 'Expired')

Your plan is expired!

Kindly renew the plan before moving to the next step.

@endif @else

Your profile is incomplete!

Kindly complete the profile before moving to the next step.

Complete Profile @endif
@endif @endif --}} @endsection