@extends('admin.layout.app') @section('title','Edit Employee Document') @section('content')

Edit Employee Family Detail

{!! Form::open(['route'=>array('employee-document.update', $employee_document->id), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'put', 'files'=>true]) !!}
{!! Form::select("employee_id", [$employee_document->employee_id=>$employee_document->employee->name], old("employee_id"), ['class'=>'form-control', 'required', 'id'=>'employee_id'] ) !!}
{{$errors->first() ? 'Employee document already exists':''}}
{{$errors->first('img_photo')}}
{{$errors->first('img_emirates_id')}}
{{$errors->first('img_passport')}}
{{$errors->first('img_health_insurance_card')}}
{{$errors->first('img_labour_card')}}
{{$errors->first('img_visa')}}
{!! Form::close() !!}
@endsection