@extends('layouts.default') @section('title', 'Create Incentive Structure') @section('header-links') @include('includes.headers.incentives') @endsection @section('new_button') list Incentive Structure List @endsection @section('content')
{!! Form::open(['url'=>'/save_incentive_request', 'id'=>'incentive_structure_form', 'autocomplete'=>'off', 'data-toggle'=>'validator']) !!}
{!! Form::selectGroup('user_id', 'Select User', $users, null, ['id'=>'userSelect']) !!}
{!! Form::selectGroup('consultant_id', 'Select Consultant', [], null, ['id'=>'consultantSelect']) !!}
{!! Form::selectGroup('type', 'Select Incentive Type', $incentiveTypes, null, ['id'=>'typeSelect']) !!}
{!! Form::numberGroup('amount', 'Amount', null, ['id'=>'amount', 'maxlength'=>'6']) !!}
{!! Form::saveButton('Save') !!}
{!! Form::close() !!}
@stop