This will accept the affiliate request.

{!! Form::open(['url' => 'admin/affiliates/edit/' . $affiliate->id . '/accept']) !!}
{!! Form::label('staff_comment', 'Comment') !!} {!! add_help('Enter a comment for the user. They will see this on their request page.') !!} {!! Form::textarea('staff_comment', $affiliate->staff_comment, ['class' => 'form-control']) !!}
{!! Form::label('is_featured', 'Feature this Affiliate? ') !!}   {!! Form::checkbox('is_featured', 1, $affiliate->id ? $affiliate->is_featured : 0, ['class' => 'form-check-input', 'data-toggle' => 'toggle']) !!}
{!! Form::submit('Accept Affiliate Request', ['class' => 'btn btn-success btn-block']) !!}
{!! Form::close() !!}