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