{!! Form::label('salary_head_category',' IRAS Category',[])!!}
{!! Form::select('salary_head_category', [
'salary' => 'Salary',
'insurance' => 'Insurance',
'bonus' => 'Bonus',
'directors_fees' => 'Director\'s Fees',
'exempted_income' => 'Exempt Income/Income subject to Tax remission/Income from Overseas Employment',
'gratuity_notice_pym_ex_gratia' => 'Gratuity/Notice Pay/Ex-gratia payment/Others',
'compensation' => 'Compensation for loss of office',
'gross_commission' => 'Gross Commission',
'pension' => 'Pension',
'transport_allowance' => 'Transport Allowance',
'entertainment_allowance' => 'Entertainment Allowance',
'other_allowances' => 'Other Allowances',
'retirement_benefits_up_to_19921231' => 'Retirement benefits accrued up to 31 Dec 1992',
'retirement_benefits_from_1993' => 'Retirement benefits accured from 1993',
'provident_fund_outside_sg' => 'Pension/Provident Fund outside Singapore without tax concession'
],isset($salary_head) ? $salary_head->salary_head_category : '',['class'=>'form-control show-tick','title'=>trans('messages.select_one')])!!}
{!! Form::label('description',trans('messages.description'),[])!!}
{!! Form::textarea('description',isset($salary_head) ? $salary_head->description : '',['size' => '30x3', 'class' => 'form-control', 'placeholder' => trans('messages.description'),"data-show-counter" => 1,"data-limit" => config('config.textarea_limit'),'data-autoresize' => 1])!!}