@extends('admin.layouts.master') @section('page.name', __('Integration')) @section('page.body')

{{__('Integration')}}

{{__('Landing Page')}}

{!! Form::model(platformSettings(), ['class' => 'form form-horizontal']) !!}

{{__('Link')}}

{{__('Hint!')}} {{__('You should use a root domain for your landing page e.g :domain while this platform is installed within a sub domain, say :subdomain', ['domain' => 'http://example.com', 'subdomain' => 'http://dashboard.example.com'])}}

{!! Form::label('root_url', __('Root Url'), ['class' => 'col-md-3']) !!}
{!! Form::text('root_url', null, ['class' => 'form-control', 'placeholder' => 'http://example.com']) !!}

{{__('Public API Access')}}

{{__('Set the unique IP address of your server in the field below for improved security, this will restrict public API access to the preset IP addresses separated by comma. Check the documentation for more details.')}}

{!! Form::label('allowed_public_ip', __('Allowed Public IP'), ['class' => 'col-md-3']) !!}
{!! Form::text('allowed_public_ip', null, ['class' => 'form-control', 'placeholder' => '63.43.23.103, 34.21.12.221']) !!}
{!! Form::close() !!}
@endsection