2024-04-07 07:28:58 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<div class='card'>
|
|
|
|
<div class='card-header d-flex justify-content-between align-items-center'>
|
|
|
|
<h2 class="">{{ label('Add Workoptions') }}</h2>
|
|
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('workoptions.index')); ?>
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
</div>
|
|
|
|
<div class='card-body'>
|
|
|
|
<form action="{{ $editable ? route('workoptions.update', [$data->workoption_id]) : route('workoptions.store') }}"
|
|
|
|
id="updateCustomForm" method="POST">
|
|
|
|
@csrf <input type=hidden name='workoption_id' value='{{ $editable ? $data->workoption_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-md-12"><?php createButton('btn-primary btn-update', '', 'Submit'); ?>
|
|
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('workoptions.index')); ?>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|