@extends('layouts.app') @section('title', 'Employee ID Card') @push('css') @endpush @section('panel-actions') Download ID Card (PDF) @endsection @section('content')
@if($settings->company_logo) @endif

{{ $settings->company_name ?? 'HRMS PRO' }}

{{ $employee->name }}
{{ $employee->designation }}
#{{ str_pad($employee->id, 5, '0', STR_PAD_LEFT) }}
{{ \Carbon\Carbon::parse($employee->created_at)->format('d M Y') }}
{{ $employee->email }}
Scan to Verify

ID Card Information

This is an automated virtual ID card for {{ $employee->name }}. It can be used for internal identification and office access.

Printing Tip: For best results, print on high-quality PVC cards or glossy cardstock paper at 100% scale.
Save as PDF Document

Technical Details
  • Card Type: Standard Professional ID (CR-80)
  • QR Code: Dynamic (Points to Employee Profile)
  • Security: Verified by HRMS Secure Protocol
@endsection