@php use App\Enums\Gender; use App\Helpers\StaticDataHelpers; use App\Services\AddonService\IAddonService;use Nwidart\Modules\Facades\Module; $banks = StaticDataHelpers::getIndianBanksList(); $addonService = app(IAddonService::class); @endphp @extends('layouts/layoutMaster') @section('title', 'Create Employee') @section('vendor-style') @vite([ 'resources/assets/vendor/libs/bs-stepper/bs-stepper.scss', 'resources/assets/vendor/libs/bootstrap-select/bootstrap-select.scss', 'resources/assets/vendor/libs/select2/select2.scss', 'resources/assets/vendor/libs/@form-validation/form-validation.scss', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/bs-stepper/bs-stepper.js', 'resources/assets/vendor/libs/bootstrap-select/bootstrap-select.js', 'resources/assets/vendor/libs/select2/select2.js', 'resources/assets/vendor/libs/@form-validation/popular.js', 'resources/assets/vendor/libs/@form-validation/bootstrap5.js', 'resources/assets/vendor/libs/@form-validation/auto-focus.js', ]) @endsection @section('page-script') @vite([ 'resources/assets/js/app/employee-create-validation.js', 'resources/assets/js/app/employee-create.js', ]) @endsection @section('content') @if ($errors->any()) @endif

Employee Creation

@csrf
Personal Information
Enter Your Personal Details.
Upload a profile picture (Only .jpg, .jpeg, .png and <= 5MB)
@if($settings->is_helper_text_enabled) @endif
Work Details
Enter the work details.
@if($settings->is_helper_text_enabled) @endif
Salary Information
Enter Employee Salary Details.
@endsection