@extends('guru.layouts.app') @section('content')

Edi tugas

Form Edit Tugas

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT') {{-- Pilih Materi --}}
{{-- Judul Tugas --}}
{{-- Deskripsi --}}
{{-- Upload File --}}
@if($tugas->file) File saat ini: {{ basename($tugas->file) }} @endif File maksimal 20MB. Format: pdf, docx, jpg, png, mp4, mov.
{{-- Pilih Kelas dan Deadline --}}
@foreach($kelasList as $kelas) @php $kelasTugas = $tugas->kelas->firstWhere('id', $kelas->id); @endphp
kelas->pluck('id')->toArray())) && in_array($kelas->id, old('kelas_ids', $tugas->kelas->pluck('id')->toArray()))) ? 'checked' : '' }} >
@endforeach
{{-- Tombol Simpan --}}
Batal
@endsection