@extends('layouts.admin') @section('title', __('adminstaticwords.APISettings')) @section('content')
{!! Form::model($env_files, ['method' => 'POST', 'action' => 'ConfigController@changeEnvKeys']) !!}
{{__('adminstaticwords.YouTubeApi')}}

{!! Form::label('YOUTUBE_API_KEY', __('adminstaticwords.YouTubeAPIKEY')) !!} {!! Form::text('YOUTUBE_API_KEY',null, ['class' => 'form-control']) !!} {{ $errors->first('YOUTUBE_API_KEY') }}
{{__('adminstaticwords.VimeoApi')}}

{!! Form::label('VIMEO_ACCESS', __('adminstaticwords.VimeoAPIKEY')) !!} {!! Form::text('VIMEO_ACCESS',null, ['class' => 'form-control']) !!} {{ $errors->first('VIMEO_ACCESS') }}
{{__('adminstaticwords.CaptchaCredentials')}}

{!! Form::label('captcha', __('adminstaticwords.GOOGLECAPTCHA')) !!}
{!! Form::label('NOCAPTCHA_SITEKEY', __('adminstaticwords.CAPTCHASITEKEY')) !!} {!! Form::text('NOCAPTCHA_SITEKEY', null, ['class' => 'form-control']) !!} {{ $errors->first('NOCAPTCHA_SITEKEY') }}
{{__('adminstaticwords.PaymentGateways')}}
{!! Form::label('stripe_payment', __('adminstaticwords.STRIPEPAYMENT')) !!}
{!! Form::label('STRIPE_KEY', __('adminstaticwords.STRIPEKEY')) !!} {!! Form::text('STRIPE_KEY', null, ['class' => 'form-control']) !!} {{ $errors->first('STRIPE_KEY') }}
{!! Form::label('paypal_payment', __('adminstaticwords.PAYPALPAYMENT')) !!}
{!! Form::label('razorpay_payment',__('adminstaticwords.RAZORPAYPAYMENT')) !!}
{!! Form::label('RAZOR_PAY_KEY',__('adminstaticwords.RAZORPAYKEY')) !!} {!! Form::text('RAZOR_PAY_KEY', null , ['class' => 'form-control']) !!} {{ $errors->first('RAZOR_PAY_KEY') }}
{!! Form::label('payu_payment', __('adminstaticwords.PAYUPAYMENT')) !!}
{!! Form::label('PAYU_METHOD', __('adminstaticwords.PAYUMETHOD')) !!} {!! Form::text('PAYU_METHOD', null, ['class' => 'form-control']) !!} {{ $errors->first('PAYU_METHOD') }}
{!! Form::label('PAYU_DEFAULT', __('adminstaticwords.PAYUDEFAULTOPTION')) !!} {!! Form::text('PAYU_DEFAULT', null, ['class' => 'form-control']) !!} {{ $errors->first('PAYU_DEFAULT') }}
{{-- braintree payment --}}
{!! Form::label('braintree', __('adminstaticwords.BRAINTREEPAYMENT')) !!}
{{-- coinpay payment --}}
{!! Form::label('coinpay',__('adminstaticwords.COINPAYMENT')) !!}
{!! Form::label('paystack',__('adminstaticwords.PAYSTACKPAYMENT')) !!}
{!! Form::label('paypal_payment', __('adminstaticwords.PAYTMPAYMENT')) !!}
{{__('adminstaticwords.PaytmTestingLive')}}
{!! Form::checkbox('paytm_test', 1, ($config->paytm_test == 1 ? 1 : 0), ['class' => 'bootswitch', "data-on-text"=>"Live", "data-off-text"=>"Test", "data-size"=>"small"]) !!}
{{ $errors->first('paytm_test') }}
{!! Form::label('instamojo_payment', __('adminstaticwords.INSTAMOJOPAYMENT')) !!}
{{__('adminstaticwords.Note')}} :-
- {{__('adminstaticwords.ForTestingModePaymentUrlIs')}} https://test.instamojo.com/api/1.1/
- {{__('adminstaticwords.ForLiveModePaymentUrlIs')}} https://www.instamojo.com/api/1.1/
{!! Form::label('mollie_payment',__('adminstaticwords.MOLLIEPAYMENT')) !!}
{!! Form::label('MOLLIE_KEY', __('adminstaticwords.MOLLIEKEY')) !!} {{ $errors->first('MOLLIE_KEY') }}
{!! Form::label('cashfree_payment', __('adminstaticwords.CASHFREEPAYMENT')) !!}
{!! Form::label('omise_payment',__('adminstaticwords.OMISEPAYMENT')) !!}
{!! Form::label('OMISE_PUBLIC_KEY',__('adminstaticwords.OMISEPUBLICKEY')) !!} {!! Form::text('OMISE_PUBLIC_KEY', null , ['class' => 'form-control']) !!} {{ $errors->first('OMISE_PUBLIC_KEY') }}
{!! Form::label('OMISE_API_VERSION',__('adminstaticwords.OMISEAPIVERSION')) !!} {!! Form::text('OMISE_API_VERSION', null , ['class' => 'form-control']) !!} {{ $errors->first('OMISE_API_VERSION') }}
{!! Form::label('flutterrave', 'Flutter Rave') !!}
{!! Form::label('payhere',__('PayHere Payment')) !!}
{{__('Payhere Payment Enviourment')}}
{!! Form::checkbox('PAYHERE_MODE', 1, ($env_files['PAYHERE_MODE'] == 'live' ? 1 : 0), ['class' => 'bootswitch', "data-on-text"=>"Live", "data-off-text"=>"Sandbox", "data-size"=>"small"]) !!}
{{ $errors->first('PAYHERE_MODE') }}
{!! Form::label('bankdetails', __('adminstaticwords.BANKDETAILS')) !!}
{!! Form::label('account_no', __('adminstaticwords.AccountNumber')) !!} {{ $errors->first('account_no') }}
{!! Form::label('account_name', __('adminstaticwords.AccountName')) !!} {{ $errors->first('account_name') }}
{!! Form::label('aws', __('adminstaticwords.AWSStorageDetails')) !!}
{!! Form::label('key', __('adminstaticwords.AWSAccessKey')) !!} {{ $errors->first('key') }}
{!! Form::label('secret',__('adminstaticwords.AWSSecretKey')) !!} {{ $errors->first('secret') }}
{{__('adminstaticwords.OtherApis')}}
{!! Form::label('MAILCHIMP_LIST_ID',__('adminstaticwords.MAILCHIMPLISTID')) !!} {!! Form::text('MAILCHIMP_LIST_ID', null, ['class' => 'form-control']) !!} {{ $errors->first('MAILCHIMP_LIST_ID') }}
{!! Form::close() !!}
@endsection @section('custom-script') @endsection