{!! Form::open(['method'=>'patch', 'action'=>'ManageAppSettingsController@updateSMSNettyfish', 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "' . __('Please Wait...') . '"; return true;']) !!}
{!! Form::hidden('sms_carrier', 'nettyfish') !!}
{!! Form::label('nettyfish_api_key', __('Nettyfish API Key:')) !!}
{!! Form::text('nettyfish_api_key', config('sms.nettyfish.api_key'), ['class'=>'form-control', 'placeholder'=>__('Enter API Key')]) !!}
{!! Form::label('nettyfish_client_id', __('Nettyfish Client Id:')) !!}
{!! Form::text('nettyfish_client_id', config('sms.nettyfish.client_id'), ['class'=>'form-control', 'placeholder'=>__('Enter Nettyfish Client Id')]) !!}
{!! Form::label('nettyfish_sender_id', __('Nettyfish Sender ID:')) !!}
{!! Form::text('nettyfish_sender_id', config('sms.nettyfish.sender_id'), ['class'=>'form-control', 'placeholder'=>__('Enter Nettyfish Sender ID')]) !!}
{!! Form::select('nettyfish_sms_type', ['TRANS'=>__('TRANSACTIONAL'), 'PROMO'=>__('PROMOTIONAL')], config('sms.nettyfish.sms_type'), ['class'=>'form-control selectpicker', 'data-style'=>'btn-default']) !!}
{!! Form::submit(__('Save Settings'), ['class'=>'btn btn-primary col-xs-6 col-sm-6 pull-left', 'name'=>'submit_button']) !!}
{!! Form::close() !!}