@extends('layouts/pos_layout') @section('title', '| Add Incentive Configuration') @section('content')
Incentive Configuration
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!}
{!! Form::label('Type', 'Type:*', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('type', $types, null, [ 'class' => 'form-control', 'id' => 'type', 'placeholder' => 'Select Type', ]) !!}

{!! Form::label('effect_from', 'Effect From:*', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('valid_from', $value = null, [ 'class' => 'form-control', 'id' => 'valid_from', 'type' => 'text', 'placeholder' => 'Enter Effect From', 'readonly' => true, ]) !!}


Incentive Step Employee Incentive (Percentage) Action


{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection