2024-04-07 07:28:58 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
@section('content')
|
2024-04-10 09:36:30 +00:00
|
|
|
<div class="page-content">
|
|
|
|
<div class="container-fluid">
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-10 09:36:30 +00:00
|
|
|
<!-- start page title -->
|
|
|
|
@include('layouts.partials.breadcrumb', ['title' => 'Designation'])
|
|
|
|
|
|
|
|
<!-- end page title -->
|
|
|
|
|
|
|
|
<div class='card'>
|
|
|
|
<div class='card-body'>
|
|
|
|
<form
|
|
|
|
action="{{ $editable ? route('designation.update', [$data->designation_id]) : route('designation.store') }}"
|
|
|
|
id="updateCustomForm" method="POST">
|
|
|
|
|
|
|
|
@csrf
|
|
|
|
|
|
|
|
<input type=hidden name='designation_id' value='{{ $editable ? $data->designation_id : '' }}' />
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-lg-6">
|
|
|
|
{{ createText('title', 'title', 'Title', '', $editable ? $data->title : '') }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{-- <div class="col-lg-6">
|
|
|
|
{{ createCustomSelect('tbl_departments', 'title', 'department_id', $editable ? $data->departments_id : '', 'Department', 'departments_id', 'form-control select2', 'status<>-1') }}
|
|
|
|
</div> --}}
|
|
|
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
|
|
|
{{ createPlainTextArea('job_description', '', 'Job Description', $editable ? $data->job_description : '') }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
|
|
|
{{ createPlainTextArea('remarks', '', 'Remarks', $editable ? $data->remarks : '') }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-12 mt-2">
|
|
|
|
|
|
|
|
<?php createButton('btn-primary btn-update', '', 'Submit'); ?>
|
|
|
|
|
|
|
|
<?php createButton('btn-danger btn-cancel', '', 'Cancel', route('designation.index')); ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-07 07:28:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|