@extends('core::layouts.master') @section('title') Add Contract @endsection @section('styles') @stop @section('content')
{!! Form::open(array('route' => 'contract.store','method'=>'POST','class'=>'form-horizontal','enctype'=>'multipart/form-data')) !!}
@lang('message.add_contract')
*
@if($errors->first('employee')) {{$errors->first('employee')}} @endif
*
@if($errors->first('contract_type')) {{$errors->first('contract_type')}} @endif
*
@if($errors->first('department')) {{$errors->first('department')}} @endif
*
@if($errors->first('position')) {{$errors->first('position')}} @endif
$
{!! Form::text('salary', null, array('placeholder' => 'Ex: 400','class' => 'form-control')) !!}
.00
@if($errors->first('salary')) {{$errors->first('salary')}} @endif
$
{!! Form::text('gasoline', null, array('placeholder' => 'Ex: 30','class' => 'form-control')) !!}
.00
@if($errors->first('gasoline')) {{$errors->first('gasoline')}} @endif
$
{!! Form::text('card', null, array('placeholder' => 'Ex: 30','class' => 'form-control')) !!}
.00
@if($errors->first('card')) {{$errors->first('card')}} @endif
@if($errors->first('currency')) {{$errors->first('currency')}} @endif
*
@if($errors->first('contract_start_date')) {{$errors->first('contract_start_date')}} @endif
@if($errors->first('contract_end_date')) {{$errors->first('contract_end_date')}} @endif
@if($errors->first('probation_end_date')) {{$errors->first('probation_end_date')}} @endif
*
Check @if($errors->first('tax')) {{$errors->first('tax')}} @endif
{!! Form::textarea('education', null, array('placeholder' => '','class' => 'form-control','rows' => 2)) !!}
{!! Form::textarea('experience', null, array('placeholder' => '','class' => 'form-control','rows' => 2)) !!}
{!! Form::textarea('skills', null, array('placeholder' => '','class' => 'form-control','rows' => 2)) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection