35 lines
1.5 KiB
PHP
35 lines
1.5 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="bg-white shadow-md rounded-lg p-6 max-w-xl mx-auto">
|
|
<h1 class="text-xl font-semibold text-gray-700 mb-4">✏️ Edit Wali Murid</h1>
|
|
|
|
<form action="{{ route('wali-murid.update', $wali_murid->id) }}" method="POST">
|
|
@csrf
|
|
@method('PUT')
|
|
|
|
<div class="mb-4">
|
|
<label class="block text-gray-700 mb-1">Nama Wali Murid</label>
|
|
<input type="text" name="nama_wali" value="{{ $wali_murid->nama_wali }}" class="w-full border rounded px-3 py-2 focus:ring focus:ring-green-300" required>
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<label class="block text-gray-700 mb-1">Email</label>
|
|
<input type="email" name="email" value="{{ $wali_murid->email }}" class="w-full border rounded px-3 py-2 focus:ring focus:ring-green-300">
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<label class="block text-gray-700 mb-1">No HP</label>
|
|
<input type="text" name="no_hp" value="{{ $wali_murid->no_hp }}" class="w-full border rounded px-3 py-2 focus:ring focus:ring-green-300">
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<label class="block text-gray-700 mb-1">Alamat</label>
|
|
<textarea name="alamat" class="w-full border rounded px-3 py-2 focus:ring focus:ring-green-300">{{ $wali_murid->alamat }}</textarea>
|
|
</div>
|
|
|
|
<button type="submit" class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600">Perbarui</button>
|
|
</form>
|
|
</div>
|
|
@endsection
|