31 lines
1.6 KiB
PHP
31 lines
1.6 KiB
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<div class='card'>
|
|
<div class='card-header d-flex justify-content-between align-items-center'>
|
|
<h2 class="">{{ label('Add Designations') }}</h2>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('designations.index')); ?>
|
|
|
|
</div>
|
|
<div class='card-body'>
|
|
<form action="{{ $editable ? route('designations.update', [$data->designation_id]) : route('designations.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-12 pb-2">{{ createPlainTextArea('remarks', '', 'Remarks', $editable ? $data->remarks : '') }}
|
|
</div>
|
|
<div class="col-lg-6">
|
|
{{ createText('job_description', 'job_description', 'Job Description', '', $editable ? $data->job_description : '') }}
|
|
</div>
|
|
<div class="col-lg-6">
|
|
{{ createCustomSelect('tbl_departments', 'title', 'department_id', $editable ? $data->departments_id : '', 'Departments Id', 'departments_id', 'form-control select2', 'status<>-1') }}
|
|
</div>
|
|
<div class="col-md-12"><?php createButton('btn-primary btn-update', '', 'Submit'); ?>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('designations.index')); ?>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|