@extends('layouts.app') @section('title', 'Social Media Accounts') @section('content')

Social Media Accounts

Connect New Account
@if (session('success')) @endif
Connected Accounts
@if($accounts->count() > 0)
@foreach($accounts as $account) @endforeach
Platform Username Status Connected On Actions
{{ $account->getPlatformDisplayName() }}
{{ $account->username }} @if($account->connected) Connected @else Disconnected @endif {{ $account->created_at->format('M d, Y') }}
@csrf @method('DELETE')
@else
No Social Media Accounts Connected

Connect your social media accounts to share your websites and AI agents.

Connect Account
@endif
Analytics

Track the performance of your social media posts and engagement.

View Analytics
Quick Share

Share your content across multiple platforms with a single click.

@endsection @section('styles') @endsection