@extends('layouts.app') @section('title', 'Edit Topic') @section('content')

Edit Topic

Update the topic information and subject assignment

Topic Details

Update the topic name and subject assignment

Editing
@csrf @method('PUT')

Current Topic

{{ $topic->name }}

Current Subject

{{ $topic->subject->name }}

Created {{ $topic->created_at->diffForHumans() }}
@error('subject_id')
{{ $message }}
@enderror

Choose which subject this topic should belong to

@error('name')
{{ $message }}
@enderror

Update the topic name as needed

@error('status')

{{ $message }}

@enderror

Set the visibility of this topic. Live topics appear to students.

Cancel

Danger Zone

Delete this topic

Once deleted, this topic and all its associated data cannot be recovered.

@csrf @method('DELETE')
@endsection