@extends('layouts.main') @section('title', $data['title']) @section('content')

Welcome To Dashboard!!

@php $avatarPath = $data['userDetail']->avatar; $finalAvatar = $avatarPath && file_exists(public_path($avatarPath)) ? asset($avatarPath) : asset('assets/user_profile/default.png'); @endphp User Image

{{ $data['userDetail']->first_name }} {{ $data['userDetail']->last_name }}

User Type : {{ $data['userDetail']->user_type_name }}

Email: {{ $data['userDetail']->email }}

Mobile: {{ $data['userDetail']->phone_number }}

@endsection('content') @section('custom-scripts')