TIF_NGANJUK_E41220778/resources/views/admin/pengumuman/edit.blade.php

71 lines
3.4 KiB
PHP

<x-app-layout>
@section('page-title', $pageTitle)
<div class="d-flex align-items-center mb-4">
<a href="{{ route('admin.pengumuman.index') }}" class="btn btn-outline-secondary me-3">
<i class="bi bi-arrow-left"></i>
</a>
<h3 class="my-0 fw-bold">Formulir Edit Pengumuman</h3>
</div>
<div class="row justify-content-center">
<div class="col-md-10">
<div class="card border-0 shadow-sm">
<div class="card-body p-4">
<div class="card-body">
<form action="#" method="POST" id="formEditPengumuman">
<div class="mb-3">
<label for="judul" class="form-label">Judul Pengumuman</label>
<input type="text" class="form-control" id="judul"
value="{{ $pengumuman['title'] }}" required>
</div>
<div class="mb-3">
<label for="tipe" class="form-label">Tipe Pengumuman</label>
<select class="form-select" id="tipe" required>
<option value="" disabled>Pilih tipe...</option>
<option value="info" @if ($pengumuman['type'] == 'info') selected @endif>Info</option>
<option value="success" @if ($pengumuman['type'] == 'success') selected @endif>Success</option>
<option value="warning" @if ($pengumuman['type'] == 'warning') selected @endif>Warning</option>
<option value="danger" @if ($pengumuman['type'] == 'danger') selected @endif>Danger</option>
<option value="secondary" @if ($pengumuman['type'] == 'secondary') selected @endif>Secondary</option>
</select>
</div>
<div class="mb-3">
<label for="content" class="form-label">Isi Pengumuman</label>
<textarea class="form-control" id="content" rows="5" required>{{ $pengumuman['content'] }}</textarea>
</div>
<hr>
<div class="d-flex justify-content-end">
<button type="submit" class="btn btn-primary">Simpan Perubahan</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@push('scripts')
<script>
document.getElementById('formEditPengumuman').addEventListener('submit', function(e) {
e.preventDefault();
modernSwal.fire({
title: 'Menyimpan Perubahan...',
timer: 800,
didOpen: () => Swal.showLoading()
}).then(() => {
Toast.fire({
icon: 'success',
title: 'Berhasil',
text: 'Pengumuman berhasil diperbarui.'
});
// Redirect setelah 1.5 detik
setTimeout(() => {
window.location.href = "{{ route('admin.pengumuman.index') }}";
}, 1500);
});
});
</script>
@endpush
</x-app-layout>