@extends('layouts.contentLayoutMaster')
@php
$breadcrumbs = [[['link' => route('students.contracts.index',$student), 'name' => "الطالب : $student->student_name"], ['link' => route('students.contracts.transportations.index' ,[$student->id, $contract]), 'name' => "اضافة خدمة النقل"]],['title' => 'تسجيل خدمة النقل ']];
@endphp
@section('title', sprintf('اضافة حدمة النقل للطالب %s - العقد رقم #%s', $student->student_name, $contract))
@section('vendor-style')
@endsection
@section('page-style')
{{-- Page Css files --}}
@endsection
@section('content')
@component('components.forms.formCard',['title' => sprintf('اضافة حدمة النقل للطالب %s - العقد رقم #%s', $student->student_name, $contract)])
{!! Form::open(['route' => ['students.contracts.transportations.store',['student'=> $student->id,'contract'=> $contract]],'method'=>'POST' , 'onsubmit' => 'showLoader()']) !!}