@extends('layouts.user_type.guest') @section('header_title', $isEdit ? __('Edit Instagram account') : __('Add Instagram account manually')) @push('extra_css') @endpush @section('content')
@include('user.user_menu')

{{ $isEdit ? __('Edit Instagram account') : __('Add Instagram account manually') }}

{{ __('Manual accounts are only saved as profile records. To let the robot manage posts, comments, or messages, connect through Meta OAuth.') }}

{{ __('We never store Instagram passwords. Meta connection uses OAuth tokens issued by Meta.') }}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if($isEdit) @method('PUT') @endif
{{ __('Back') }}
@if($isEdit) @php($botSetting = $account->botSetting)

{{ __('Bot settings') }}

{{ __('These settings control AI draft generation and automatic replies for this Instagram account.') }}

@csrf @method('PUT')
@endif
@endsection