@extends('layouts.dashboard') @section('title', 'Create Payroll') @section('content')
Back to Payrolls

Create New Payroll

Create a payroll record for an employee

Payroll Information

Fill in the payroll details for the employee

@csrf

Employee Information

@error('employee_id')

{{ $message }}

@enderror

Pay Period

@error('pay_period_start')

{{ $message }}

@enderror
@error('pay_period_end')

{{ $message }}

@enderror

Salary Details

EGP
@error('basic_salary')

{{ $message }}

@enderror
EGP
@error('allowances')

{{ $message }}

@enderror
EGP
@error('deductions')

{{ $message }}

@enderror
EGP
@error('overtime')

{{ $message }}

@enderror
EGP
@error('bonus')

{{ $message }}

@enderror

Net Salary Preview

0.00 EGP

Calculated: Basic + Allowances + Overtime + Bonus - Deductions

Total Income

0.00

Total Deductions

0.00

Payment Information

@error('payment_date')

{{ $message }}

@enderror

Status

Payroll will be created as Draft

Additional Notes

@error('notes')

{{ $message }}

@enderror

Fields marked with * are required

Cancel

Payroll Calculation Guide

  • Net Salary = (Basic + Allowances + Overtime + Bonus) - Deductions
  • Allowances include travel, housing, and other benefits
  • Deductions include taxes, loans, and other withholdings
  • Overtime is calculated based on company policy
@endsection