@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()']) }} معلومات ولي الأمر
معلومات الطالب
الطالب يحتاج الي رعاية
السماح بالسداد بعد انتهاء العام المالي
تعديل معلومات الطالب عودة
{!! Form::close() !!} @endcomponent @endsection @section('vendor-script') @endsection @section('page-script') @endsection