@php $full_pic_path = ""; $profile_pic = $user_registration->profile_pic; if($profile_pic) { $base_path=asset('uploads/users_profile_pic'); $full_pic_path=$base_path."/".$profile_pic; } else { $base_path=asset('dist/images'); $full_pic_path=$base_path."/"."profile-default.png"; } $first_name = $user_registration->first_name; $last_name = $user_registration->last_name; $mobile = $user_registration->mobile; $email = $user_registration->email; $instagram_profile = $user_registration->instagram_profile; $linked_in = $user_registration->linked_in; $about = $user_registration->detail; $user_type = $user_registration->user_type; $user_name = $user_registration->user_name; $user_registration_id = $user_registration->id; @endphp