{!! Form::open(array('role' => 'form', 'files'=>'false', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('company_id_fk', $data['attributes']['company_id_fk'], ['class' => 'col-sm-2']) !!}
{!! Form::select('company_id_fk', $data['companyData'], (isset($data['req']['company_id_fk']))?$data['req']['company_id_fk']:$data['model']->company_id_fk, ['class' => 'form-control getProject', 'id' => 'company_id_fk', 'required'=>'required']) !!}
{!! Form::label('project_id_fk', $data['attributes']['project_id_fk'], ['class' => 'col-sm-2']) !!}
{!! Form::select('project_id_fk', array(''=>'Select any'), (isset($data['req']['project_id_fk']))?$data['req']['project_id_fk']:'', ['class' => 'form-control', 'id' => 'project_id_fk', 'required'=>'required']) !!}
{!! Form::label('grade_id_fk', $data['attributes']['grade_id_fk'], ['class' => 'col-sm-2 control-label']) !!}

Warning: Undefined variable $data in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr/securityMoney/form.blade.php on line 24

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr/securityMoney/form.blade.php on line 24

Warning: Attempt to read property "grade_id_fk" on null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr/securityMoney/form.blade.php on line 24
{!! Form::select('grade_id_fk', $data['gradeData'], $data['model']->grade_id_fk, ['class' => 'form-control getPosition getLevel', 'id' => 'grade_id_fk']) !!}

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

{!! Form::label('level_id_fk', $data['attributes']['level_id_fk'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('level_id_fk', [''=>'Select any'], $data['model']->level_id_fk, ['class' => 'form-control', 'id' => 'level_id_fk']) !!}

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

{!! Form::label('amount', $data['attributes']['amount'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('amount', $data['model']->amount, ['class' => 'form-control', 'id' => 'amount', 'type' => 'text', 'placeholder' => $data['placeholder']['amount']]) !!}

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

{!! Form::label('status', $data['attributes']['status'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('ss[status]', $data['easycode']->getStatusOptions(), $data['model']->status, ['class' => 'form-control', 'id' => 'status']) !!}

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

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