@extends('layouts.app') @section('title') Update Employee @stop @section('breadcrumb') @stop @section('content')
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Employee Persional Information


Company Details


{{csrf_field()}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('employee_id')) {{ $errors->first('employee_id') }} @endif
@if ($errors->has('cnic')) {{ $errors->first('cnic') }} @endif
@if ($errors->has('department')) {{ $errors->first('department') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('dob')) {{ $errors->first('dob') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('date_of_joing')) {{ $errors->first('date_of_joing') }} @endif
@if ($errors->has('Resi_address')) {{ $errors->first('Resi_address') }} @endif
@if ($errors->has('salary')) {{ $errors->first('salary') }} @endif
@if ($errors->has('per_address')) {{ $errors->first('per_address') }} @endif
@if ($errors->has('role_name')) {{ $errors->first('role_name') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if($HrmEmployees->companyDetail)
@if ($errors->has('contract_type')) {{ $errors->first('contract_type') }} @endif
@endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif


Bank Account Details


{{--
@if ($errors->has('file_Certificate')) {{ $errors->first('file_Certificate') }} @endif
--}}
@if ($errors->has('holder_name')) {{ $errors->first('holder_name') }} @endif
{{--
@if ($errors->has('file_resume')) {{ $errors->first('file_resume') }} @endif
--}}
@if ($errors->has('bank_name')) {{ $errors->first('bank_name') }} @endif
{{--
@if ($errors->has('file_photo')) {{ $errors->first('file_photo') }} @endif
--}}
@if ($errors->has('location')) {{ $errors->first('location') }} @endif
{{--
@if ($errors->has('file_other')) {{ $errors->first('file_other') }} @endif
--}}
@if ($errors->has('account_no')) {{ $errors->first('account_no') }} @endif
@if ($errors->has('bank_code')) {{ $errors->first('bank_code') }} @endif
{{--

--}}
 

@stop @section('js') @stop