{!! Form::open(['url' => action('LoyaltyController@update', [$loyalty->id]), 'method' => 'PUT', 'id' => 'update_loyalty']) !!}
{!! Form::label('amount', 'Amount' . ':*') !!}
{!! Form::number('amount', $loyalty->amount, ['class' => 'form-control', 'placeholder' => 'Amount']) !!}
{!! Form::label('points', ' Points' . ':*') !!}
{!! Form::number('points', $loyalty->points, ['class' => 'form-control', 'required', 'placeholder' => 'Loyalty Points']) !!}
{!! Form::close() !!}