@extends('core::layouts.master') @section('title') {{ trans_choice('payroll::general.employee',2) }} @endsection @section('styles') @stop @section('content')

{{ trans_choice('payroll::general.employee',2) }}

{!! Form::open(array('route' => 'employee.store','method'=>'POST','class'=>'form-horizontal','enctype'=>'multipart/form-data')) !!}
@lang('message.addemployee')
*
{!! Form::text('first_name_en', null, array('placeholder' => 'Ex: Sok','class' => 'form-control')) !!} @if($errors->first('first_name_en')) {{$errors->first('first_name_en')}} @endif
*
{!! Form::text('last_name_en', null, array('placeholder' => 'Ex: Mao','class' => 'form-control')) !!} @if($errors->first('last_name_en')) {{$errors->first('last_name_en')}} @endif
*
{!! Form::text('first_name_kh', null, array('placeholder' => 'Ex: សុខ','class' => 'form-control')) !!} @if($errors->first('first_name_kh')) {{$errors->first('first_name_kh')}} @endif
*
{!! Form::text('last_name_kh', null, array('placeholder' => 'Ex: ម៉ៅ','class' => 'form-control')) !!} @if($errors->first('last_name_kh')) {{$errors->first('last_name_kh')}} @endif
*
@if($errors->first('marital_status')) {{$errors->first('marital_status')}} @endif
*
@if($errors->first('gender')) {{$errors->first('gender')}} @endif
{!! Form::text('id_card', null, array('placeholder' => '','class' => 'form-control')) !!}
*
@if($errors->first('dob')) {{$errors->first('dob')}} @endif
@if($errors->first('bank_name')) {{$errors->first('bank_name')}} @endif
{!! Form::text('account_number', null, array('placeholder' => 'Ex: 000 000 000','class' => 'form-control')) !!} @if($errors->first('account_number')) {{$errors->first('account_number')}} @endif
{!! Form::text('account_name', null, array('placeholder' => 'Ex: Sok Mao','class' => 'form-control')) !!} @if($errors->first('account_name')) {{$errors->first('account_name')}} @endif
{!! Form::text('driver_license', null, array('placeholder' => '','class' => 'form-control')) !!}
*
@if($errors->first('branch')) {{$errors->first('branch')}} @endif
*
{!! Form::text('phone_number', null, array('placeholder' => 'Ex: 093322910','class' => 'form-control')) !!} @if($errors->first('phone_number')) {{$errors->first('phone_number')}} @endif
{!! Form::text('email', null, array('placeholder' => '','class' => 'form-control')) !!}
{!! Form::text('height', null, array('placeholder' => 'Ex: 1.60','class' => 'form-control')) !!}
*
{!! Form::textarea('pob', null, array('placeholder' => '','class' => 'form-control','rows' => 3)) !!} @if($errors->first('pob')) {{$errors->first('pob')}} @endif
@lang('message.crrent_address')

*
@if($errors->first('province')) {{$errors->first('province')}} @endif
*
@if($errors->first('district')) {{$errors->first('district')}} @endif
@if($errors->first('commune')) {{$errors->first('commune')}} @endif
@if($errors->first('village')) {{$errors->first('village')}} @endif
{!! Form::text('location', null, array('placeholder' => '','class' => 'form-control')) !!}
{!! Form::text('emergency_contact', null, array('placeholder' => '','class' => 'form-control')) !!}
{!! Form::textarea('noted', null, array('placeholder' => '','class' => 'form-control','rows' => 2)) !!}
Default image
@if($errors->first('profile')) {{$errors->first('profile')}} @endif
{!! Form::close() !!}
@endsection @section('scripts') @endsection