{{ __('Edit Office') }} - {!! $office->name !!}

@if (!empty($office->createdBy))
Created By: {{$office->createdBy->name}}@endif
@php($class = "rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 block mt-1 w-full")
{!! Form::model($office, ['method' => 'PATCH', 'route' => ['office.update', $office->id] ]) !!}
@include('office.item')
{{ __('Cancel') }} {{ __('Save') }}
{!! Form::close() !!}