@extends('layouts.default') @section('title', 'Create Incentive Structure') @section('header-links') @include('includes.headers.incentives') @endsection @section('new_button') remove_red_eye Incentive Structure List @endsection @section('content')
{!! Form::open(['url'=>'/save_structure_assign', 'id'=>'incentive_structure_form', 'autocomplete'=>'off', 'data-toggle'=>'validator']) !!}
{!! Form::selectGroup('structure_id', 'Structure', $structures, null, ['id'=>'structureSelect', 'onchange'=>'getStructure($(this))']) !!}
{!! Form::selectGroup('user_id', 'User', $users, null, ['id'=>'userSelect']) !!}
{!! Form::saveButton('Save') !!}
{!! Form::close() !!}
@stop