@extends('layouts/microfin_layout') @section('title', '| OTS Employee Incentive Configuration') @section('content') @include('successMsg')
OTS Employee Incentive Configuration
{!! Form::open(array('url' => '#', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('effectiveDate', 'Effective Date:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('effectiveDate', null, ['class'=>'form-control input-sm readonly', 'type' => 'text']) !!}

Add Steps:

SL# Amount Slab Percentage Action
{{ ++$no }} {!! Form::text('amount[]', $value = null, ['class' => 'form-control number', 'id' => 'amount', 'type' => 'text', 'autocomplete'=>'off', 'style' => 'text-align: right']) !!} {!! Form::text('percentage[]', $value = null, ['class' => 'form-control number', 'id' => 'percentage', 'type' => 'text', 'autocomplete'=>'off', 'style' => 'text-align: right']) !!}

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