@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => 'Designation'])
@csrf
{{ createText('title', 'title', 'Title', '', $editable ? $data->title : '') }}
{{--
{{ createCustomSelect('tbl_departments', 'title', 'department_id', $editable ? $data->departments_id : '', 'Department', 'departments_id', 'form-control select2', 'status<>-1') }}
--}}
{{ createPlainTextArea('job_description', '', 'Job Description', $editable ? $data->job_description : '') }}
{{ createPlainTextArea('remarks', '', 'Remarks', $editable ? $data->remarks : '') }}
@endsection