@extends('dashboards.admins.layouts.admin-dash-layout') @section('title', 'Profile') @section('content')

Profile

{{ Auth::user()->name }}

{{ Auth::user()->employee_id }} | {{ Auth::user()->phone }}

{{ Auth::user()->department ? Auth::user()->department->title : '_' }}

@foreach (Auth::user()->roles as $role) {{ $role->name }} @endforeach

@if (Auth::user()->profile_img) @endif
@endsection @section('scripts') @endsection