@extends('admin.layouts.app') @section('content')
@csrf @method('PUT')
Add/Edit Employee Details
@if($employee->photo) @else
@endif
(Photo Size 400 X 400)
Photo Size less then 40KB

Personal Details

{{-- Row 1 --}}
{{-- Row 2 --}}
{{-- Row 3 --}}
{{-- Row 4 --}}
{{-- Row 5 --}}

Company Details

Employee Details

Branch Access for GEO Fencing

@php $geoAccess = is_array($employee->branch_access_for_geo_fencing) ? $employee->branch_access_for_geo_fencing : []; @endphp @foreach($branches as $branch) @endforeach

Shift & Policy Details

Second Weekly Off Days
@php $empWoDays = is_array(old('second_wo_days', $employee->second_wo_days)) ? old('second_wo_days', $employee->second_wo_days) : []; @endphp @foreach(['I', 'II', 'III', 'IV', 'V'] as $day) @endforeach
@php $autoShifts = is_array($employee->is_auto_shift) ? $employee->is_auto_shift : []; @endphp @foreach($shifts as $shift) @endforeach

Access Control Setting (Note WeekTime Zone 2,3,4 Only For access controller 2 Door And 4 Door)

@for($i = 1; $i <= 4; $i++)
@endfor
Cancel
@endsection @section('scripts') @endsection