@extends('layouts.adminmaster') @section('styles') @endsection @section('content')
{{ lang('Employee ID') }} | : | {{ Auth::user()->empid }} |
{{ lang('Name') }} | : | {{ Auth::user()->name }} |
{{ lang('Role') }} | : | @if (!empty(Auth::user()->getRoleNames()[0])) {{ Auth::user()->getRoleNames()[0] }} @endif |
{{ lang('Email') }} | : | {{ Auth::user()->email }} |
{{ lang('Phone') }} | : | {{ Auth::user()->phone }} |
{{ lang('Languages') }} | : |
@php
$values = explode(',', Auth::user()->languagues);
@endphp
|
{{ lang('Skills') }} | : |
@php
$values = explode(',', Auth::user()->skills);
@endphp
|
{{ lang('Location') }} | : | {{ Auth::user()->country }} |
{{ lang('Two-Factor Authentication (2FA) is an option that provides an extra layer of security to your account in addition to your email and password. When Two-Factor Authentication is enabled, your account cannot be accessed by anyone, even if they have stolen your password.') }}