@extends('layouts.admin') @section('header')

Add Employee

@endsection @section('content')

Employee Count

This system is designed for SMEs (Small & Medium Enterprises)

{{ $employeeCount }}/{{ $maxEmployees }}

{{ $remainingSlots }} slots remaining

@if($remainingSlots <= 5)
⚠️ Warning: You are approaching the employee limit! Only {{ $remainingSlots }} slots remaining.
@endif
@include('employees.form', ['buttonText' => 'Add Employee'])
@endsection