@extends('layouts.app') @section('title', 'Edit Session - ' . $session->title) @section('content') Courses {{ $session->course->title }} Edit Session {{ $session->session_number }} Edit Session {{ $session->title }} Back to Sessions Materials @csrf @method('PUT') Session Information Session Number * @error('session_number') {{ $message }} @enderror Session Title * @error('title') {{ $message }} @enderror Session Description * {{ old('description', $session->description) }} @error('description') {{ $message }} @enderror Duration (minutes) * @error('duration_minutes') {{ $message }} @enderror Publication Status is_published) ? 'checked' : '' }}> Publish session (visible to students) Session Content Session Content {{ old('content', $session->content) }} This is the main content that students will see. Additional materials can be managed separately. @error('content') {{ $message }} @enderror @if($session->materials && count($session->materials) > 0) Session Materials {{ count($session->materials) }} materials attached Manage Materials @foreach(array_slice($session->materials, 0, 3) as $material) {{ Str::limit($material['title'], 20) }} @endforeach @if(count($session->materials) > 3) +{{ count($session->materials) - 3 }} more @endif @endif Update Session Manage Materials Cancel Danger Zone Once you delete a session, there is no going back. Please be certain. Delete Session
{{ $session->title }}
Once you delete a session, there is no going back. Please be certain.
Are you sure you want to delete this session?
This action cannot be undone and will also delete all materials associated with this session.