@extends('admin.include.main') @section('content')
Update Salary Grade
@csrf
Grade Name:*
@if ($errors->has('grade_name'))
{{ $errors->first('grade_name') }}
@endif
Basic Salary:*
@if ($errors->has('basic_salary'))
{{ $errors->first('basic_salary') }}
@endif
House Rent:
@if ($errors->has('house_rent'))
{{ $errors->first('house_rent') }}
@endif
Transport Allowance:
@if ($errors->has('transport_allowance'))
{{ $errors->first('transport_allowance') }}
@endif
Medical Allowance:
@if ($errors->has('medical_allowance'))
{{ $errors->first('medical_allowance') }}
@endif
Over Time Hourly Rate:
@if ($errors->has('over_time_hourly_rate'))
{{ $errors->first('over_time_hourly_rate') }}
@endif
Provident Fund:
@if ($errors->has('provident_fund'))
{{ $errors->first('provident_fund') }}
@endif
Hourly Rate:
@if ($errors->has('hourly_rate'))
{{ $errors->first('hourly_rate') }}
@endif
Total Allowance:
@if ($errors->has('total_allowance'))
{{ $errors->first('total_allowance') }}
@endif
Total Deduction:
@if ($errors->has('total_deduction'))
{{ $errors->first('total_deduction') }}
@endif
Gross Salary:
@if ($errors->has('gross_salary'))
{{ $errors->first('gross_salary') }}
@endif
Net Salary:
@if ($errors->has('net_salary'))
{{ $errors->first('net_salary') }}
@endif
Description:
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@endsection