{!! Form::open(['url' => action('DepartmentController@update', [$department->id]), 'method' => 'PUT', 'id' => 'update_department', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('name', __( 'user.department.name' ) . ':*') !!}
{!! Form::text('name', $department->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'user.department.name' )]) !!}
{!! Form::label('image', 'Department Image' . ':*') !!}
{!! Form::file('image', ['class' => 'form-control', 'accept' => 'image/*']) !!}
{!! Form::close() !!}