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

40 lines
2.1 KiB
PHP

<x-app-layout>
@section('page-title', $pageTitle)
<div class="card shadow-sm border-0">
<div class="card-header bg-white d-flex align-items-center">
<a href="{{ route('admin.pengumuman.index') }}" class="btn btn-light me-2">
<i class="bi bi-arrow-left"></i>
</a>
<h5 class="my-0 fw-bold">Formulir Edit Pengumuman</h5>
</div>
<div class="card-body">
<form action="#" method="POST">
{{-- Form ini tidak akan berfungsi karena tidak ada backend --}}
<div class="mb-3">
<label for="judul" class="form-label">Judul Pengumuman</label>
<input type="text" class="form-control" id="judul" value="{{ $pengumuman['title'] }}">
</div>
<div class="mb-3">
<label for="tipe" class="form-label">Tipe Pengumuman</label>
<select class="form-select" id="tipe">
<option>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">{{ $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>
</x-app-layout>