@extends('install.layout') @section('title', __('install.settings.title')) @section('content')
@csrf @include('shared.alerts')
@include('shared.input', ['name' => 'app_name', 'value' => env('APP_NAME'), 'label' => __('install.settings.hosting_name')])
@include('shared.input', ['name' => 'client_id', 'value' => old('client_id'), 'label' => __('install.settings.client_id')])
@include('shared.input', ['name' => 'client_secret', 'value' => old('client_id'), 'label' => __('install.settings.client_secret')])

{!! __('install.settings.infolicense', ['link' => 'https://clientxcms.com/']) !!}

@include('shared.search-select-multiple', ['name' => 'locales[]', 'value' => ['en_GB'], 'label' => __('install.settings.locales'), 'options' => $locales])

{{ __('install.settings.eula') }}

@endsection