@extends('admin.layouts.form') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

list   Create new Employee

Employee List
{!! Form::open(['url'=>URL::to('module/employee'),'class'=>'form','files'=>'true',]) !!}

Basic info

fingerprint
person
person
mail
mail
call

Additional info

calendar_month
calendar_month
mosque {!! Form::select('religion',['Muslim'=>'Muslim','Hindu'=>'Hindu', 'Others'=>'Others'],null,['class'=>'form-control selectpicker']) !!}
calendar_month
man {!! Form::select('gender',['Male'=>'Male','Female'=>'Female', 'Others'=>'Others'],null,['class'=>'form-control selectpicker']) !!}
female {!! Form::select('marital_status',['Married'=>'Married','Single'=>'Single', 'Others'=>'Others'],null,['class'=>'form-control selectpicker']) !!}
import_export {!! Form::select('category',['Permanent'=>'Permanent','Contractual'=>'Contractual', 'Others'=>'Others'],null,['class'=>'form-control selectpicker']) !!}
payments {!! Form::select('payment_mode',['Cash'=>'Cash','Cheque'=>'Cheque', 'Bank transfer'=>'Bang transfer'],null,['class'=>'form-control selectpicker']) !!}
verified_user
code
payments {!! Form::select('department',department_list(),null,['class'=>'form-control selectpicker']) !!}
payments {!! Form::select('designation',designation_list(),null,['class'=>'form-control selectpicker']) !!}
{!! Form::close() !!}
@endsection @section('custom_page_script') @endsection