@extends('backend.layout') @section('content')
{{ __('Profile Picture') }}
user image
{{ __('User Information') }}
{{ __('Name') . ' :' }}
{{ $userInfo->first_name . ' ' . $userInfo->last_name }}
{{ __('Username') . ' :' }}
{{ $userInfo->username }}
{{ __('Email') . ' :' }}
{{ $userInfo->email }}
{{ __('Phone') . ' :' }}
{{ $userInfo->contact_number }}
{{ __('Address') . ' :' }}
{{ $userInfo->address }}
{{ __('City') . ' :' }}
{{ $userInfo->city }}
{{ __('State') . ' :' }}
{{ $userInfo->state }}
{{ __('Country') . ' :' }}
{{ $userInfo->country }}
@endsection