@extends('admin.adminlayouts.adminlayout') @section('head') {!! HTML::style('assets/global/plugins/bootstrap-fileinput/bootstrap-fileinput.css') !!} {!! HTML::style('assets/global/plugins/bootstrap-datepicker/css/datepicker3.css') !!} @stop @section('mainarea')

New Employee

@if(count($department)==0)
{!! Lang::get('messages.noDept') !!}
@else
{{--INLCUDE ERROR MESSAGE BOX--}} @include('admin.common.error') {{--END ERROR MESSAGE BOX--}}
{!! Form::open(array('route'=>"admin.employees.store",'id'=>'addEmployeeForm','class'=>'form-horizontal','method'=>'POST','files' => true)) !!}
Personal Details
Select image Change Remove
NOTE! Image Size must be (872px by 724px)
{!! Form::select('gender', array('male' => 'Male', 'female' => 'Female'), \Illuminate\Support\Facades\Request::old('gender'),array('class'=>'form-control')) !!}

Account Login

Company Details
{!! Form::select('department', $department,null,['class' => 'form-control select2me','id'=>'department','onchange'=>'dept();return false;']) !!}
Salary Slip

Documents
 
Select file Change Remove
 
Select file Change Remove
 
Select file Change Remove
 
Select file Change Remove
 
Select file Change Remove
{{---------------Documents------------------}}
@endif
@stop @section('footerjs') {!! HTML::script('assets/global/plugins/bootstrap-fileinput/bootstrap-fileinput.js') !!} {!! HTML::script('assets/global/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js') !!} {!! HTML::script("assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js") !!} {!! HTML::script('assets/admin/pages/scripts/components-pickers.js') !!} @stop