Create ID Card Design

Back to Designs

Create New ID Card Design

Upload a custom Blade template for employee ID cards

Give your design a unique, descriptive name
Accepted formats: .blade.php, .php (Max: 2MB)
Security: Dangerous PHP functions (eval, exec, system, etc.) are not allowed and will be rejected.
Upload a screenshot of the front side of your ID card (JPEG, PNG, GIF - Max: 2MB)
Upload a screenshot of the back side of your ID card (JPEG, PNG, GIF - Max: 2MB)
Template Guidelines
  • Your template should be a valid Blade (.blade.php) file
  • Use $employee variable for employee data (full_name, system_id, photo_path, etc.)
  • Use $company variable for company information
  • Keep file size under 2MB
  • Avoid using dangerous PHP functions for security
  • Test your template thoroughly before activating
Sample Template Structure
<div class="id-card">
    <div class="header">
        <img src="{{ asset('storage/'.$company - > logo_light) }}" alt="Company Logo">
    </div>
    <div class="photo">
        <img src="{{ asset('storage/'.$employee - > photo_path) }}" alt="Employee Photo">
    </div>
    <h3>{{ $employee - > full_name }}</h3>
    <p>ID: {{ $employee - > system_id }}</p>
    <p>{{ $employee - > designation }}</p>
</div>
Cancel