@extends('layouts.admin')
@section('title','Edit Student')
@section('breadcrumb')
StudentsEdit@endsection
@section('admin-content')
@include('admin.students._form', ['action' => route('admin.students.update', $student), 'method' => 'PUT'])
@endsection