@extends('backEnd.master') @section('title') @lang('hr.staff_import') @endsection @section('mainContent')

@lang('common.select_criteria')

1. @lang('hr.point1')
2. @lang('hr.point2')
3. @lang('hr.point3') (@foreach ($roles as $role) {{ '"'.$role->name.'"' }} {{ !$loop->last ? ',' :'' }} @endforeach)
4. @lang('hr.point4') (@foreach ($departments as $department) {{ '"'.$department->name.'"' }} {{ !$loop->last ? ',' :'' }} @endforeach)
5. @lang('hr.point5') @if (count($designations) > 0) @foreach ($designations as $designation) {{ '"'.$designation->title.'"' }} {{ !$loop->last ? ',' :'' }} @endforeach
@endif 6. @lang('hr.point6')( @foreach ($genders as $gender) {{ $gender->id . '=' . $gender->base_setup_name . ',' }} @endforeach ).
7. @lang('hr.point7'). ("married", "unmarried")
8. @lang('hr.point8'). ("permanent", "contract")

{{ Form::open([ 'class' => 'form-horizontal', 'files' => true, 'route' => 'staff-bulk-store', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'staff_import_form', ]) }}
@if ($errors->has('file')) {{ $errors->first('file') }} @endif
{{ Form::close() }}
@endsection