@extends('layouts.app') @section('title', 'Edit Absensi Praktikum') @section('content')
Edit Absensi Praktikum
@if ($errors->any()) @endif
@csrf @method('PUT')
@error('practical_id')
{{ $message }}
@enderror
@error('student_id')
{{ $message }}
@enderror
@php $statusOptions = ['hadir' => 'Hadir', 'izin' => 'Izin', 'sakit' => 'Sakit', 'alpa' => 'Alpa']; @endphp @foreach ($statusOptions as $value => $label)
status) == $value ? 'checked' : '' }}>
@endforeach @error('status')
{{ $message }}
@enderror
Batal
@endsection @push('scripts') @vite('resources/js/console/attendances/edit_script.js') @endpush