@section('page_content')
{{ Auth()->user()->display_name }}

{{ Auth()->user()->position }}

{{ Auth()->user()->email }}

Email

@if(Auth()->user()->contact_number != null)
{{ Auth()->user()->contact_number }}

Phone No.

@endif
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@include('tenant.account.tabs.tab_' . $current_tab)
@stop