@if(session('success'))
{{session('success')}}

@endif @if(session('error'))
{{session('error')}}

@endif @if(isset($getSelectedUser))
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('nric')) {{ $errors->first('nric') }} @endif
@if ($errors->has('position')) {{ $errors->first('position') }} @endif
@if ($errors->has('salary')) {{ $errors->first('salary') }} @endif
@if ($errors->has('bank_details')) {{ $errors->first('bank_details') }} @endif
@if ($errors->has('employee_epf_rate')) {{ $errors->first('employee_epf_rate') }} @endif
@if ($errors->has('employer_epf_rate')) {{ $errors->first('employer_epf_rate') }} @endif
@if ($errors->has('leave_entitlement')) {{ $errors->first('leave_entitlement') }} @endif
{{ csrf_field() }}
@endif