{!! Form::open(array('role' => 'form','method'=>'get', 'files'=>'false', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('company_id_fk', $data['attributes']['company_id_fk'], ['class' => '']) !!} {!! Form::label('project_id_fk', $data['attributes']['project_id_fk'], ['class' => '']) !!} {!! Form::label('branch_id_fk', $data['attributes']['branch_id_fk'], ['class' => '']) !!} Recruitment Type Fiscal Year
{!! Form::select('company_id_fk', $data['companyData'], (isset($_GET['company_id_fk']))?$_GET['company_id_fk']:'', ['class' => 'form-control getProject', 'id' => 'company_id_fk', 'required'=>'required']) !!} {!! Form::select('project_id_fk', array(''=>'Select any'), (isset($_GET['project_id_fk']))?$_GET['project_id_fk']:'', ['class' => 'form-control getBranch', 'id' => 'project_id_fk', 'required'=>'required']) !!} {!! Form::select('branch_id_fk', array(''=>'Select any'), (isset($_GET['branch_id_fk']))?$_GET['branch_id_fk']:'', ['class' => 'form-control hr-select2', 'id' => 'branch_id_fk', 'required'=>'required']) !!} {!! Form::select('recruitment_type', $data['recruitmentTypeData'], (isset($_GET['recruitment_type']))?$_GET['recruitment_type']:'', ['class' => 'form-control', 'id' => 'recruitment_type', 'required'=>'required']) !!} {!! Form::select('fiscal_year_id', $data['fiscalYearData'], (isset($_GET['fiscal_year_id']))?$_GET['fiscal_year_id']:'', ['class' => 'form-control', 'id' => 'fiscal_year_id', 'required'=>'required']) !!} {!! Form::submit('Search', ['id' => 'add', 'class' => 'btn btn-info', 'name'=>'submit']); !!}
{!! Form::close() !!}
@section('footerAssets')