tambah form di surveyor

This commit is contained in:
majid
2024-10-14 14:16:52 +07:00
parent 42c7732593
commit bb7eae74f3
11 changed files with 1240 additions and 21 deletions

View File

@@ -0,0 +1,14 @@
<form action="{{ isset($debitur->id) ? route('debitur.update', $debitur->id) : route('debitur.store') }}" method="POST" class="grid gap-5">
@if(isset($debitur->id))
<input type="hidden" name="id" value="{{ $debitur->id }}">
@method('PUT')
@endif
@csrf
<div class="mt-2">
<div class="bg-info border p-6 rounded-lg shadow-lg flex items-center justify-center" style="height: 300px">
<iframe src="https://gistaru.atrbpn.go.id/rtronline/" frameborder="0" style="width: 100%; height: 100%;"></iframe>
</div>
</div>
</form>