{!! Form::open(['url' => action('LoyaltyController@store'), 'method' => 'post', 'id' => 'add_loyalty', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('amount', 'Amount' . ':*') !!}
{!! Form::number('amount', null, ['class' => 'form-control', 'placeholder' => 'Amount']) !!}
{!! Form::label('points', ' Points' . ':*') !!}
{!! Form::number('points', null, ['class' => 'form-control', 'required', 'placeholder' => 'Loyalty Points']) !!}
{!! Form::close() !!}