52 lines
2.6 KiB
PHP
52 lines
2.6 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Edit Ongkir Kota - INUFA')
|
|
@section('header', 'Edit Ongkir Kota')
|
|
|
|
@section('content')
|
|
<div class="container mx-auto px-4 py-6">
|
|
<div class="bg-white rounded-lg shadow-lg p-6 max-w-2xl mx-auto">
|
|
<form action="{{ route('admin.ongkir-kota.update', $kota->id) }}" method="POST">
|
|
@csrf
|
|
@method('PUT')
|
|
|
|
<div class="space-y-6">
|
|
<div>
|
|
<label for="nama_kota" class="block text-gray-700 font-medium mb-2">Nama Kabupaten <span class="text-red-500">*</span></label>
|
|
<input type="text" id="nama_kota" name="nama_kota" value="{{ old('nama_kota', $kota->nama_kota) }}"
|
|
class="w-full border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500" required>
|
|
@error('nama_kota')
|
|
<p class="text-red-500 text-sm mt-1">{{ $message }}</p>
|
|
@enderror
|
|
</div>
|
|
|
|
<div>
|
|
<label for="biaya_ongkir" class="block text-gray-700 font-medium mb-2">Biaya Ongkir (Rp) <span class="text-red-500">*</span></label>
|
|
<input type="number" id="biaya_ongkir" name="biaya_ongkir" value="{{ old('biaya_ongkir', $kota->biaya_ongkir) }}"
|
|
min="0" class="w-full border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500" required>
|
|
@error('biaya_ongkir')
|
|
<p class="text-red-500 text-sm mt-1">{{ $message }}</p>
|
|
@enderror
|
|
</div>
|
|
|
|
<div>
|
|
<label class="inline-flex items-center">
|
|
<input type="checkbox" name="status" value="1" {{ $kota->status ? 'checked' : '' }}
|
|
class="rounded border-gray-300 text-blue-600 shadow-sm focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50">
|
|
<span class="ml-2">Aktif</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex justify-end space-x-4 mt-6">
|
|
<a href="{{ route('admin.ongkir-kota.index') }}" class="px-4 py-2 bg-gray-300 text-gray-800 rounded-md hover:bg-gray-400">
|
|
Batal
|
|
</a>
|
|
<button type="submit" class="px-6 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700">
|
|
Simpan Perubahan
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|