@extends('layouts.users.app') @section('content')
| {{ __('Role') }} | {{ $user->roles->first()->name }} |
|---|---|
| {{ __('Status') }} | @if($user->status === 'active') {{ __('Active') }} @else {{ __('Inactive') }} @endif |
| {{ __('Name') }} | {{ $user->name }} |
| {{ __('Email') }} | {{ $user->email }} |
| {{ __('phone') }} | {{ $user->customer->phone }} |
| {{ __('company position') }} | {{ $user->customer->position }} |
| {{ __('Company Information') }} | |
| {{ __('company name') }} | {{ $user->customer->company->name }} |
| {{ __('country') }} | {{ $user->customer->company->country }} |
| {{ __('city') }} | {{ $user->customer->company->city }} |
| {{ __('Email') }} | {{ $user->email }} |
| {{ __('Created At') }} | {{ $user->created_at->format('Y-m-d H:i:s') }} |
| {{ __('Last Updated') }} | {{ $user->updated_at->format('Y-m-d H:i:s') }} |