@extends('layouts.master') @section('title', 'Profile - SuperAdmin') @section('pagetitle', 'Profile - SuperAdmin') @section('content')
@include('layouts.partials.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('profile.view'), 'title' => __('Profile')]] ]) @include('layouts.partials.messages')

{{ ucfirst($role_name) .__(" Profile") }}

profile-image

Contact Information

Full name:

{{$user->getFullName()}}

Email address:

{{$user->email}}

Phone number:

{{$user->phone}}

Gender:

{{$user->gender['name'] ?? '-'}}

Date of Birth:

{{$user->birthday ? $user->present()->birthday : '-'}}
@endsection