@php $adminDetail = session()->get('AdminDetail'); $userImage = $adminDetail->image ?? 'default_avatar.png'; $userImagePath = 'uploads/user/' . $userImage; @endphp

{{Session::get('AdminDetail')->name }}

{{--
Send Message
--}}
@if(Session::get('AdminDetail')->user_type == 0) Password Reset @else @endif
My Profile

{{ Form::open(['role' => 'form','id'=>'userUpdateForm','route'=>'myprofile.update', 'files' => true]) }}
{{ $errors->first('name') }}
{{ $errors->first('email') }}
{{ $errors->first('mobile') }}
{{ $errors->first('image') }}
Profile Image
@php $rootPathImage = config('global.USER_PROFILE_IMAGE_ROOT_PATH'); $fileName = $rootPathImage . Session::get('image'); @endphp @if(!empty(Session::get('image'))) @else @endif
{{ Form::close() }}
About
account_circle

Full Name: {{$adminDetail->name}}

done

Status: {{$adminDetail->activation_status}}

code

Role: @if($adminDetail->user_type == 0) @else @endif

send

Email: {{$adminDetail->email}}

call

Phone: {{$adminDetail->mobile}}