@extends('layouts.app') @section('content-header')
| {{__('commons.photo')}} |
|
|---|---|
| {{__('commons.name')}} | {{ $user->name }} |
| {{__('adminPrivilege.email')}} | {{ $user->email }} |
| {{__('adminPrivilege.email_verified_at')}} | {{ $user->email_verified_at }} |
| {{__('commons.status')}} | {{ $user->status }} |
| {{__('adminPrivilege.roles')}} | {{ implode(', ', $user->roles()->pluck('name')->toArray()) }} |
| {{__('adminPrivilege.country')}} | {{ optional($user->country)->country_name }} |
| {{__('adminPrivilege.phone')}} | {{ $user->phone }} |
| {{__('commons.created_at')}} | {{ $user->created_at }} |
| {{__('commons.update_at')}} | {{ $user->updated_at }} |