@extends('app-new') @push('head-script') @endpush @push('content-header') @endpush @section('content')
User avatar

  • Name: {{ ucwords($employee->name) }}
  • Email: {{ ucwords($employee->email) }}
  • Mobile Number: {{ ucwords($employee->mobile) }}
  • Manager: {{ !is_null($employee->hod) ? ucwords($employee->hod->name) : '-' }}
  • Status: @if ($employee->status == App\Helpers\ConstantHelper::ACTIVE) {{ ucfirst($employee->status) }} @elseif( $employee->status == App\Helpers\ConstantHelper::IN_ACTIVE || $employee->status == App\Helpers\ConstantHelper::BLACKLIST) {{ ucfirst($employee->status) }} @else {{ ucfirst($employee->status) }} @endif
  • @if ($employee->transfer_date)
  • Transfer Date: {{ $employee->transfer_date ? date('d/m/Y', strtotime($employee->transfer_date)) : '' }}
  • @endif @if ($employee->status == 'transfer') @endif
free_location == 1) checked @endif>
free_location == 2) checked @endif>
free_location == 3) checked @endif>
free_location == 0) checked @endif>
{!! $errors->first('free_location', '') !!}

{{--
--}}
@endsection @push('footer-script') @endpush