@extends('layouts.app') @section('content')

{{ label('Add Onboardings') }}

@csrf
{{ createDate('doj', 'Doj', '', $editable ? $data->doj : '') }}
{{ createCustomSelect( 'tbl_designations', 'title', 'designation_id', $editable ? $data->designations_id : '', 'Designations Id', 'designations_id', 'form-control select2', 'status<>-1', ) }}
{{ createText( 'position_status', 'position_status', "Position Status", '', $editable ? $data->position_status : '', ) }}
{{ createCustomSelect( 'tbl_departments', 'title', 'department_id', $editable ? $data->departments_id : '', 'Departments Id', 'departments_id', 'form-control select2', 'status<>-1', ) }}
{{ createCustomSelect( 'tbl_shifts', 'title', 'shift_id', $editable ? $data->shifts_id : '', 'Shifts Id', 'shifts_id', 'form-control select2', 'status<>-1', ) }}
{{ createImageInput('agreement', 'Agreement', '', $editable ? $data->agreement : '') }}
{{ createImageInput('nda', 'Nda', '', $editable ? $data->nda : '') }}
{{ createText('terms', 'terms', 'Terms', '', $editable ? $data->terms : '') }}
{{ createText('workoptions', 'workoptions', 'Workoptions', '', $editable ? $data->workoptions : '') }}
{{ createText('title', 'title', 'Title', '', $editable ? $data->title : '') }}
{{ createPlainTextArea('remarks', '', 'Remarks', $editable ? $data->remarks : '') }}
@endsection