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 Ethnicities') }}</h2>
|
|
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('ethnicities.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('ethnicities.update', [$data->ethnicity_id]) : route('ethnicities.store') }}"
|
|
|
|
id="updateCustomForm" method="POST">
|
|
|
|
@csrf <input type=hidden name='ethnicity_id' value='{{ $editable ? $data->ethnicity_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('ethnicities.index')); ?>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|