@php $setting = App\Models\SiteSetting::find(1); $version = $setting->copyright ?? '2.0.0'; // Default version if not set @endphp Careers - Open Positions

Join Our Team

Explore open positions and build your career with us.

View Jobs

Exciting Roles

We offer a variety of positions to grow your career in a dynamic environment.

Learning & Growth

Continuous learning opportunities and skill development programs.

Great Culture

Collaborative environment that values creativity, diversity, and well-being.

Open Positions

Explore current opportunities and submit your application online

How to Apply

Important application guidelines before you proceed

  1. 1

    Review Positions

    Browse the available roles and select a position that matches your qualifications.

  2. 2

    Create an Account

    When you click Apply, you will be prompted to register or log in before continuing.

  3. 3

    Upload Application PDF

    Upload one combined PDF file containing your CV and all supporting documents.
    Maximum file size: 5 MB

  4. 4

    Track Your Application

    You will receive email notifications as your application is reviewed and updated.

@foreach($jobs as $job)

{{ $job->job_title }}

{{ $job->department }}
@php $descriptionSections = $job->sections ->filter(function ($section) { return strcasecmp(trim($section->title), 'Job Description') === 0; }) ->take(4); @endphp @forelse ($descriptionSections as $section)

{{ Str::limit(strip_tags($section->content), 120) }}

@empty

No description available

@endforelse
{{ \Carbon\Carbon::parse($job->deadline)->format('M d, Y') }}
@auth('applicant') Apply Now @else Apply @endauth
@endforeach
@php $jobsArray = $jobs->map(function($job) { return [ 'id' => $job->id, 'job_title' => $job->job_title, 'department' => $job->department, 'deadline' => \Carbon\Carbon::parse($job->deadline)->format('M d, Y'), 'sections' => $job->sections->map(function($section) { return [ 'title' => $section->title, 'content' => strip_tags($section->content), ]; }), 'apply_url' => route('portal.apply', ['job' => $job->id]), 'login_url' => route('portal.login', ['redirect' => route('portal.apply', ['job' => $job->id])]), 'is_authenticated' => auth('applicant')->check(), ]; }); @endphp