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

Create Employee Document

{!! Form::open(['route'=>array('employee-document.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post','files'=>true]) !!}
{!! Form::select("employee_id", [''=>'Select']+$employees, 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 @push('footerscript') @endpush