@extends('department::layouts.master') @section('title', '| Editing Department ' . getLanguageTranslation($department->name)) @section('content')

{{ getLanguageTranslation($department->name) }}

Back to Departments
View/Update
{!! Form::model($department, ['method' => 'PUT', 'url' => "/departments/{$department->id}", 'class' => 'form-horizontal col-md-12', 'role' => 'form', 'files' => true]) !!} @include('department::_form', [ 'disabledField' => Auth::user()->hasAnyRole(['ADMIN']) ? '' : 'disabled' ]) @if (Auth::user()->hasAnyRole(['ADMIN']))
@endif {!! Form::close() !!}
@endsection