@extends('layouts.contentLayoutMaster')
@php
$breadcrumbs = [[['link' => route('students.index'), 'name' => "الطلاب"],['name'=> $student->student_name]],['title' => 'تعديل ']];
@endphp
@section('title', sprintf('تعديل معلومات الطالب : %s | %s',$student->id , $student->student_name))
@section('vendor-style')
@endsection
@section('page-style')
{{-- Page Css files --}}
@endsection
@section('content')
@component('components.forms.formCard',['title' => sprintf('تعديل الطالب رقم : #%s - %s',$student->id , $student->student_name)])
{{ Form::model($student,['route' => ['students.update',$student->id],'method'=> 'PUT' , 'class' => 'row','id' => 'adminform' , 'onsubmit' => 'showLoader()']) }}