48 lines
1.7 KiB
PHP
48 lines
1.7 KiB
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<div class="page-content">
|
|
<div class="container-fluid">
|
|
|
|
<!-- start page title -->
|
|
@include('layouts.partials.breadcrumb', ['title' => 'City'])
|
|
|
|
<!-- end page title -->
|
|
<div class='card'>
|
|
<div class='card-body'>
|
|
<form action="{{ $editable ? route('cities.update', [$data->city_id]) : route('cities.store') }}"
|
|
id="updateCustomForm" method="POST">
|
|
|
|
@csrf
|
|
<input type=hidden name='city_id' value='{{ $editable ? $data->city_id : '' }}' />
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6">
|
|
{{ createText('title', 'title', 'Title', '', $editable ? $data->title : '') }}
|
|
</div>
|
|
|
|
<div class="col-lg-6">
|
|
{{ createCustomSelect('tbl_districts', 'title', 'district_id', $editable ? $data->districts_id : '', 'District', 'districts_id', 'form-control select2', 'status<>-1') }}
|
|
</div>
|
|
|
|
|
|
{{-- <div class="col-lg-12 pb-2">
|
|
{{ createTextarea('description', 'description ckeditor-classic', 'Description', $editable ? $data->description : '') }}
|
|
</div> --}}
|
|
|
|
<div class="col-lg-12 pb-2">
|
|
{{ 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('cities.index')); ?>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|