9 lines
229 B
PHP
9 lines
229 B
PHP
@extends('layouts.application')
|
|
|
|
@section('content')
|
|
@include('grade-subject.form', [
|
|
'route' => route('grades.subjects.update',
|
|
['grade' => $grade, 'subject' => $updateSubject]
|
|
), 'method' => 'PUT'])
|
|
@endsection
|