@extends('layouts.vertical', ['title' => 'User Management'])
@push('head-script')
@endpush
@push('head-scriptTwo')
@endpush
@section('content')
@php
$user = Auth::user();
$today_day = Carbon\Carbon::now();
@endphp
{{ Auth::user()->fname . ' ' . Auth::user()->mname . ' ' . Auth::user()->lname }}
{{ Auth::user()->roles->first()->name }}
@endsection