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

{!! Form::label('employee_id', 'Employee:*', ['class' => 'col-sm-3 control-label'],false) !!}

{!! Form::label('branch_id', 'Customer Assign Type:*', ['class' => 'col-sm-3 control-label'],false) !!}

{!! Form::label('branch_id', 'Branch:*', ['class' => 'col-sm-3 control-label'],false) !!}


SL# Customer Id Customer Name Action


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