@extends('layouts.app') @section('title', session('company_code') . ' Elite System') @section('header') Dashboard @endsection @section('body')

My Account

Employee Name

{{ strtoupper($user->name) }}

Branch

{{ strtoupper(session('branch_name')) }}

Position(s)

@foreach($user->positions AS $p) {{ strtoupper($p->position_desc) }} @endforeach

Username

{{ strtoupper($user->username) }}


@endsection @section('scripts') @endsection