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