@extends('layouts/acc_layout') @section('title', '| Income TAX Certificate') @section('content')

Income TAX Certificate

{!! Form::open([ 'url' => '#', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'filterFormId', 'method' => 'get', ]) !!}
{!! Form::label('branch', 'Branch', ['class' => 'control-label']) !!} {!! Form::select('branch_id', $branches, null, [ 'class' => 'form-control select2', 'id' => 'branch', 'name' => 'branch_id', 'required' => 'required', ]) !!}
{!! Form::label('employee', 'Employee', ['class' => 'control-label']) !!} {!! Form::select('employeeId', ['' => 'Select'], null, [ 'class' => 'form-control select2', 'id' => 'employeeId', 'name' => 'employeeId', ]) !!}

{{ $errors->error->first('employeeId') }}

{!! Form::label('fiscal_year', 'Fiscal Year', ['class' => 'control-label']) !!} {!! Form::select('fiscal_year', $fiscalYears, null, [ 'class' => 'form-control select2', 'id' => 'fiscal_year', 'name' => 'fiscal_year', ]) !!}
{!! Form::close() !!}
@endsection