@extends('layouts.app') @section('title', __('AI Settings')) @section('page-title', __('AI Settings')) @section('page-subtitle', __('Pick the LLM provider that powers analyses and translations.')) @section('content') @include('super-admin._nav') @php $provider = old('provider', $activeProvider); $brand = [ 'openai' => ['name' => 'OpenAI', 'mark' => 'AI', 'color' => '#10a37f', 'docs' => 'platform.openai.com'], 'anthropic' => ['name' => 'Anthropic Claude', 'mark' => 'An', 'color' => '#d97757', 'docs' => 'console.anthropic.com'], 'gemini' => ['name' => 'Google Gemini', 'mark' => 'Gm', 'color' => '#4285f4', 'docs' => 'aistudio.google.com'], ]; @endphp
{{-- Test connection — separate forms outside the main settings form so their hidden provider inputs do not bleed into the save submission. --}}{{ __('Pings the provider with the saved key.') }}
@foreach($providers as $key => $label)