@extends('hr_main') @section('title', '| ' . $data['pageTitle']) @section('content') @include('successMsg')
{!! $data['pageTitle'] !!}
{!! Form::open(['files' => 'false', 'id' => 'formId', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!}
{!! Form::select('fiscal_year_id', $data['fiscalYears'], null, ['class' => 'form-control fiscal_year_id', 'id' => 'fiscal_year_id']) !!}

{!! Form::select('particular_item_id', [], null, ['class' => 'form-control particular_item_id select2', 'id' => 'particular_item_id']) !!}

{!! Form::text('exemptions_amount', '', ['class' => 'form-control', 'id' => 'exemptions_amount', 'type' => 'text', 'placeholder' => 'Limit In Amount']) !!}
{!! Form::text('exemptions_percentage', '', ['class' => 'form-control', 'id' => 'exemptions_percentage', 'type' => 'text', 'placeholder' => 'Limit In Percentage']) !!}
{!! Form::select('percentage_effcet_income_type', $data['percentageEffectIncomeTypes'], null, ['class' => 'form-control percentage_effcet_income_type', 'id' => 'percentage_effcet_income_type']) !!}

{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{!! Form::close() !!}
@endsection @section('footerAssets') @endsection