CourseWork/resources/views/students/edit.blade.php

6 lines
155 B
PHP
Raw Permalink Normal View History

2024-04-23 14:52:49 +04:00
@extends('layouts.app')
@section('content')
2024-05-06 17:47:25 +04:00
@include('students.form', ['route' => route('students.update', $student), 'method' => 'PUT'])
2024-04-23 14:52:49 +04:00
@endsection