{{ $user->name }}
Back| {{ __(' Name') }} | {{ $user->name }} | {{ __('Phone') }} | {{ $user->phone }} |
|---|---|---|---|
| {{ __('Email') }} | {{ $user->email }} | {{ __('Status') }} | {{ $user->status ? __('Active') : __('Inactive') }} |
| {{ __('Verified') }} | {{ $user->is_verified ? __('Verified') : __('Not Verified') }} | ||
| {{ __('Profile Image') }} | @php $filepath = '/uploads/users/'; @endphp @if(!empty($user->photo) && file_exists(public_path() . $filepath . $user->photo)) |