@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)) !!}
{{---------------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