@extends('layouts.contentLayoutMaster')
@php
$breadcrumbs = [[['link' => route('appointments.sections.index'), 'name' => "اقسام المقابلات"],['link' => route('appointments.offices.index'), 'name' => "مكاتب المقابلات"],['link' => route('appointments.offices.edit',$office), 'name' => "تعديل : $office->office_name"]],['title'=> 'تعديل معلومات المكتب']];
@endphp
@section('title', sprintf('تعديل معلومات المكتب : %s (#%s)', $office->office_name,$office->id))
@section('content')
@component('components.forms.formCard',['title' => sprintf('تعديل معلومات المكتب : %s (#%s)',$office->office_name,$office->id)])
{!! Form::model($office,['route' => ['appointments.offices.update',$office],'method'=>'PUT' , 'onsubmit' => 'showLoader()']) !!}