@extends('admin.master',['menu'=>'profile']) @section('title', isset($title) ? $title : '') @section('style') @endsection @section('content')
| {{__('Nick Name')}} | : | {!! clean(Auth::user()->nickname) !!} |
| {{__('Name')}} | : | {!! clean(Auth::user()->first_name.' '.Auth::user()->last_name) !!} |
| {{__('Role')}} | : | {{userRole($user->role)}} |
| {{__('Email')}} | : | {!! clean(Auth::user()->email) !!} |
| {{__('Email verification')}} | : | {!! statusAction($user->is_verified) !!} |
| {{__('Contact')}} | : | {{\Illuminate\Support\Facades\Auth::user()->phone}} |
| {{__('Country')}} | : | {{ !empty($user->country)?country($user->country):'' }} |
| {{__('Status')}} | : | {!! statusAction($user->status) !!} |
{{__('Please on this option to enable two factor authentication at log In.')}}
@endif