@if ($errors->has('employee_id'))
{{ $errors->first('employee_id') }}
@endif
@if ($errors->has('joining_date'))
{{ $errors->first('joining_date') }}
@endif
@if ($errors->has('department_id')) {{ $errors->first('department_id') }} @endif
@if ($errors->has('designation_id')) {{ $errors->first('designation_id') }} @endif
@if ($errors->has('duty_schedule_id')) {{ $errors->first('duty_schedule_id') }} @endif
@if ($errors->has('manager_id')) {{ $errors->first('manager_id') }} @endif
@if (@$user->role->slug == 'superadmin') @else
@if ($errors->has('role_id')) {{ $errors->first('role_id') }} @endif
@endif
@if ($errors->has('time_zone'))
{{ $errors->first('time_zone') }}
@endif
@if ($errors->has('status_id'))
{{ $errors->first('status_id') }}
@endif
@if ($errors->has('attendance_method'))
{{ $errors->first('attendance_method') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{ _trans('common.If no password is provided, set the default password to 12345678 when creating a user.') }} @if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if (isModuleActive('IpBasedAttendance'))
@if ($errors->has('is_free_ip'))
{{ $errors->first('is_free_ip') }}
@endif
@php if (@$user->ipBind->ip_addresses) { $ipAddresses = implode(', ', @$user->ipBind->ip_addresses); } else { $ipAddresses = ''; } @endphp @if ($errors->has('ip_addresses'))
{{ $errors->first('ip_addresses') }}
@endif
@endif @if (isModuleActive('AreaBasedAttendance'))
@if ($errors->has('is_free_location'))
{{ $errors->first('is_free_location') }}
@endif

{{ _trans('common.Allow Location') }}

@foreach (@$user->locationBinds ?? [] as $key => $locationBind) @endforeach
{{ _trans('common.ID') }} {{ _trans('common.Location') }} {{ _trans('common.Action') }}
{{ ++$key }} {{ $locationBind->address }}
@endif