@extends('layouts.app') @section('title', __('app.home.title') . ' - ' . config('app.name', 'CurioGPT')) @section('content')
{{ __('app.home.select_agent_to_start') }}
@if ($agents->isEmpty()){{ __('app.home.no_agents_available') }}
@else{{ $agent->name }}
@if ($agent->description){{ $agent->description }}
@endif @endforeach