@extends('agent.layouts.app') @section('title', 'Public Profile Settings') @section('content')

Public Profile Settings

Manage your public profile information visible on the Agent Verification System

@if(session('success'))

{{ session('success') }}

@endif

Your Matrix ID

{{ $agent->coupon_code }}

Share this ID with customers to verify your identity

Verified

Profile Information

This information will be visible on your public verification page

@csrf @method('PUT')
@if($agent->profile_photo) {{ $agent->name }} @else
{{ $agent->initials }}
@endif

JPG or PNG. Max 2MB.

@if($agent->profile_photo) @endif
@error('profile_photo')

{{ $message }}

@enderror

Social Media Links

Include country code without + or 00

@error('whatsapp')

{{ $message }}

@enderror
@error('facebook_url')

{{ $message }}

@enderror
@error('instagram_url')

{{ $message }}

@enderror
@error('tiktok_url')

{{ $message }}

@enderror

Privacy Settings

Choose what information to display on your public profile

{{ $agent->email }}

{{ $agent->phone ?: 'Not set' }}

Cancel
@endsection