@extends('layouts.core.backend') @section('title', trans('messages.payment_gateways')) @section('page_header')

payments {{ trans('messages.payment_gateways') }}

@endsection @section('content')

{{ trans('messages.payment.all_available_gateways') }}

{!! trans('messages.payment.all_available_gateways.wording') !!}

@foreach ($gateways as $gateway)

{{ $gateway->getDescription() }}

@if ($gateway->isActive()) @if (in_array($gateway, $enabledGateways)) {{ trans('messages.payment.active') }} @else {{ trans('messages.payment.inactive') }} @endif @endif
@endforeach

{{ trans('messages.payment.settings') }}

{{ csrf_field() }}
@include('helpers.form_control', [ 'type' => 'checkbox', 'name' => 'renew_free_plan', 'value' => \Acelle\Model\Setting::get('renew_free_plan'), 'label' => trans('messages.system.renew_free_plan'), 'help_class' => 'setting', 'options' => ['no', 'yes'], 'rules' => ['renew_free_plan' => 'required'], ])

{{ trans('messages.setting.recurring_charge_before_days.title') }}:

{{ trans('messages.setting.recurring_charge_before_days.desc') }}

{{ trans('messages.setting.recurring_charge_before_days.before_text') }} {{ trans('messages.setting.recurring_charge_before_days.after_text') }}

@endsection