@extends('admin.layout.app') @section('title','Employee Salary') @push('headerscript') @endpush @section('content')

Employee Salary

{{-- Back--}}
{!! Form::open(['route'=>array('employee-salary.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{{$errors->first('salary_month')}}
{!! Form::select("assets_account_id", [''=>'Select']+$assets, old("assets_account_id"), ['class'=>'form-control select2' ,'id' => 'assets_account_id','required'=>'required'] ) !!}
{{$errors->first('assets_account_id')}}
{!! Form::select("expense_account_id", [''=>'Select']+$expenses, old("expense_account_id",), ['class'=>'form-control select2' ,'id' => 'expense_account_id','required'=>'required'] ) !!}
{{$errors->first('expense_account_id')}}
{!! Form::select("branch_id", \App\Http\Helpers\Helper::getBranchData(), old("branch_id"), ['class'=>'form-control' ,'id' => 'branch_id','required'=>'required'] ) !!}
{{$errors->first('journal_voucher_no')}}
{{-- --}}
Employee Name Attendance Basic Salary OT Hours OT Amount Transp. Accomm. Insurance Others Reimbursement DeductionsDeductions ReasonTotal Salary
{!! Form::close() !!}
@endsection @push('footerscript') @endpush