diff --git a/resources/views/employees/fields.blade.php b/resources/views/employees/fields.blade.php index 8ecc053b..537106f5 100644 --- a/resources/views/employees/fields.blade.php +++ b/resources/views/employees/fields.blade.php @@ -1,54 +1,14 @@ - -
- {!! Html::label('Nama:', 'name') !!} - {!! Html::text('name', old('name', $employee->name ?? ''))->class('form-control')->attribute('required')->attribute('maxlength', 50) !!} -
- @push('page_scripts') @endpush - - -
- {!! Html::label('NIP:', 'identity_number') !!} - {!! Html::text('identity_number', old('identity_number', $employee->identity_number ?? ''))->class('form-control')->attribute('maxlength', 20) !!} -
- - -
- {!! Html::label('Email:', 'email') !!} - {!! Html::email('email', old('email', $employee->email ?? ''))->class('form-control')->attribute('maxlength', 255) !!} -
- - -
- {!! Html::label('Deskripsi:', 'description') !!} - {!! Html::text('description', old('description', $employee->description ?? ''))->class('form-control')->attribute('maxlength', 255) !!} -
- - -
- {!! Html::label('Telepon:', 'phone') !!} - {!! Html::text('phone', old('phone', $employee->phone ?? ''))->class('form-control')->attribute('maxlength', 20) !!} -
- - -
- {!! Html::label('Jabatan:', 'position_id') !!} - {!! Html::select('position_id', $positions)->class('form-control select2') !!} -
- - -
- {!! Html::label('Departemen:', 'department_id') !!} - {!! Html::select('department_id', $departments, old('department_id', $employee->department_id ?? ''))->class( - 'form-control select2', - ) !!} + +
+ {!! Html::label('Nama:', 'name') !!} + {!! Html::text('name', old('name', $employee->name ?? ''))->class('form-control')->attribute('required')->attribute('maxlength', 50) !!}
-
{!! Html::label('NIP:', 'identity_number') !!}