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

Edit Subject

Update the subject information

Subject Details

Update the subject name and save changes

Editing
@csrf @method('PUT')

Current Subject Name

{{ $subject->name }}

Created {{ $subject->created_at->diffForHumans() }}
@error('name')
{{ $message }}
@enderror

Enter the updated name for this subject

Cancel

Danger Zone

Delete this subject

Once deleted, this subject cannot be recovered.

@csrf @method('DELETE')
@endsection