@extends('hr_main') @section('title', '| '.$data['pageTitle']) @section('content')

{!! $data['pageTitle'] !!}

{!! Form::open(array('role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('company_id_fk', $data['attributes']['company_id_fk'], ['class' => 'control-label']) !!} {!! Form::label('project_id_fk', $data['attributes']['project_id_fk'], ['class' => '']) !!} {!! Form::label('branch_id_fk', $data['attributes']['branch_id_fk'], ['class' => '']) !!} Position Project Type Festival {!! Form::label('generate_date', $data['attributes']['generate_date'], ['class' => 'control-label']) !!}
{!! Form::select('company_id_fk', $data['companyData'], (isset($_POST['company_id_fk']))?$_POST['company_id_fk']:'', ['class' => 'form-control getProject', 'id' => 'company_id_fk', 'required'=>'required']) !!} {!! Form::select('project_id_fk', array(''=>'Select any'), (isset($_POST['project_id_fk']))?$_POST['project_id_fk']:'', ['class' => 'form-control getBranch', 'id' => 'project_id_fk', 'required'=>'required']) !!} {!! Form::select('branch_id_fk', array(''=>'Select any'), (isset($_POST['branch_id_fk']))?$_POST['branch_id_fk']:'', ['class' => 'form-control hr-select2', 'id' => 'branch_id_fk', 'required'=>'required']) !!} {!! Form::select('festival', $data['festivals'], isset($_POST['festival']) ? $_POST['festival'] : null,['class' => 'form-control', 'required'=>'required', 'autocomplete'=>'off' ]) !!} {!! Form::text('generate_date', date('m-Y'), ['class' => 'form-control monthpicker', 'required'=>'required', 'autocomplete'=>'off' ]) !!} {!! Form::submit('Search', ['id' => 'add', 'class' => 'btn btn-info', 'name'=>'submit']); !!}
{!! Form::close() !!}
 
@include('hr.report.bonus.viewContent')
 
@endsection @section('footerAssets')