@extends('hr_main') @section('title', '| ' . $data['pageTitle']) @section('content')
{!! $data['pageTitle'] !!}
{!! Form::open([ 'files' => 'false', 'id' => 'formId', 'role' => 'form', 'class' => 'form-horizontal form-groups', ]) !!}
{!! Form::label('noOfBosses', 'No Of Supervisor:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select( 'noOfBosses', [1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10], $data['showData']->noOfBosses ?? null, [ 'class' => 'form-control', 'id' => 'noOfBosses', 'placeholder' => 'Select number', ], ) !!}

{!! Form::label('effectiveDate', 'Effective Date:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('effectiveDate', $data['showData']->effectiveDate ?? '', [ 'class' => 'form-control datepicker', 'id' => 'effectiveDate', 'autocomplete' => 'off', 'placeholder' => 'Select a date', ]) !!}

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