{!! Form::label('name', 'Nama:') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'maxlength' => 50, 'maxlength' => 50]) !!}
{!! Form::label('description', 'Deskripsi:') !!}
{!! Form::text('description', null, ['class' => 'form-control', 'required', 'maxlength' => 255, 'maxlength' => 255]) !!}
{!! Form::label('parent_id', 'Dibawah Departemen:') !!}
{!! Form::select('parent_id', $parents, null, ['class' => 'form-control select2']) !!}