@extends('layouts/pos_layout') @section('title', '| Update Incentive Company Customer') @section('content')
{{-- --}}
Company Incentive Config
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('valid_from', 'Effect From:*', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('valid_from', $value = $incentiveDetails->valid_from, ['class' => 'form-control', 'id' => 'valid_from', 'type' => 'text', 'placeholder' => 'Enter Effect From', 'readonly' => true]) !!}

{!! Form::label('is_incentive', 'Is Incentive:*', ['class' => 'col-sm-3 control-label']) !!}

{!! Form::label('company_incentive_percentage', 'Percentage:*', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('company_incentive_percentage', $value = $incentiveDetails->company_incentive_percentage, ['class' => 'form-control', 'id' => 'company_incentive_percentage', 'type' => 'number', 'placeholder' => 'Enter Percentage (%)', 'readonly' => false]) !!}


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