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