Telah dihapus tampilan detail data permohonan, debitur, dan biaya dari halaman registrasi. Detail jaminan masih disertakan dengan penambahan tautan kembali ke indeks registrasi. Perubahan ini bertujuan menyederhanakan tampilan halaman dan mengurangi informasi yang tidak diperlukan.
95 lines
3.6 KiB
PHP
95 lines
3.6 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumbs')
|
|
{{ Breadcrumbs::render(request()->route()->getName()) }}
|
|
@endsection
|
|
@php
|
|
// $route = Route::currentRouteName();
|
|
// dd($route); registrasi.show
|
|
$route = explode('.', Route::currentRouteName());
|
|
@endphp
|
|
@section('content')
|
|
<div class="w-full grid gap-5 lg:gap-7.5 mx-auto">
|
|
|
|
@include('lpj::component.detail-jaminan',['backLink' => 'registrasi.index'])
|
|
|
|
<div class="card pb-2.5">
|
|
<div class="card-header" id="basic_settings">
|
|
<h3 class="card-title">
|
|
Registrasi
|
|
</h3>
|
|
</div>
|
|
<div class="card-body lg:py-7.5">
|
|
<form id="{{$route[0]}}_form" name="{{$route[0]}}_form" method="POST">
|
|
<input type="hidden" id="id" name="id" value="{{ $id }}">
|
|
@method('PUT')
|
|
@csrf
|
|
|
|
<div class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
|
|
<label class="form-label max-w-56">
|
|
Tindakan
|
|
</label>
|
|
<div class="flex gap-12">
|
|
<label class="form-label flex items-center gap-2.5 text-nowrap">
|
|
<input class="radio" name="{{$route[0]}}_tindakan" type="radio" value="0" id="{{ $route[0] }}_tindakan_yes" />
|
|
Yes
|
|
</label>
|
|
<label class="form-label flex items-center gap-2.5 text-nowrap">
|
|
<input class="radio" name="{{$route[0]}}_tindakan" type="radio" value="1" id="{{ $route[0] }}_tindakan_no" />
|
|
No
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div id="{{$route[0]}}_div_jenis_pilihan" class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5 mt-5">
|
|
<label class="form-label max-w-56">
|
|
Data Jenis Penilaian (Pilihan registrasi)
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<select class="inputku select" id="{{$route[0]}}_jenis_penilaian" name="{{$route[0]}}_jenis_penilaian">
|
|
<option></option>
|
|
</select>
|
|
<em id="{{$route[0]}}_jenis_penilaian_msg" class="alert text-danger text-sm"></em>
|
|
</div>
|
|
</div>
|
|
<div id="{{ $route[0] }}_div_catatan" class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5 mt-5">
|
|
<label class="form-label max-w-56">
|
|
Catatan
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<textarea class="inputku textarea" name="{{$route[0]}}_catatan" id="{{$route[0]}}_catatan" placeholder="Catatan..." rows="6"></textarea>
|
|
<em id="{{$route[0]}}_catatan_msg" class="alert text-danger text-sm"></em>
|
|
</div>
|
|
</div>
|
|
<div id="{{ $route[0] }}_div_region" class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
|
|
<label class="form-label max-w-56">
|
|
Region
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<select class="inputku select" id="{{$route[0]}}_region" name="{{$route[0]}}_region">
|
|
<option></option>
|
|
</select>
|
|
<em id="{{$route[0]}}_region_msg" class="alert text-danger text-sm"></em>
|
|
</div>
|
|
</div><br />
|
|
<div id="{{ $route[0] }}_div_catatan2" class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
|
|
<label class="form-label max-w-56">
|
|
Catatan
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<textarea class="inputku textarea" name="{{$route[0]}}_catatan2" id="{{$route[0]}}_catatan2" placeholder="Catatan..." rows="6"></textarea>
|
|
<em id="{{$route[0]}}_catatan2_msg" class="alert text-danger text-sm"></em>
|
|
</div>
|
|
</div>
|
|
<div class="flex justify-end mt-5">
|
|
<button type="button" class="btn btn-primary" id="toEdit">
|
|
Save
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
@include('lpj::registrasi.js.editjs')
|