@extends('layouts.app') @section('content')

Employee Profile

Name, Email, Contact

ID #{{ $employee->id }} Name {{ $employee->firstname }} {{ $employee->lastname }}
Email {{ $employee->email }} Phone {{ $employee->company_mobile }}
UserType {{ $employee->permission }} Employee Type {{ $employee->emp_type }}
Created At {{ date("d/M/Y H:i A", strtotime($employee->created_at)) }} Updated At {{ date("d/M/Y H:i A", strtotime($employee->updated_at)) }}
@if (\Session::has('success'))
{!! \Session::get('success') !!}
@endif

Manage Employee Permissions

@csrf
OTP Mode Employee Status
Enquiry Followup
@endsection