@extends('layouts.app') @section('title', 'My Profile') @section('page-title', 'My Profile') @section('page-subtitle', 'Manage your account settings') @section('topbar-actions') Back @endsection @php $industries = [ 'Fashion & Apparel', 'Beauty & Cosmetics', 'Health & Wellness', 'Food & Beverage', 'Technology & Electronics', 'Travel & Hospitality', 'Sports & Fitness', 'Home & Lifestyle', 'Finance & Fintech', 'Education & E-Learning', 'Gaming & Entertainment', 'Automotive', 'Real Estate', 'Healthcare & Pharma', 'Retail & E-Commerce', 'Other', ]; @endphp @push('styles') @endpush @section('content')
{{-- ── Left: avatar card + security tips ── --}}
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
{{ auth()->user()->name }}
{{ auth()->user()->email }}
Influencer
Industry @if(auth()->user()->industry) {{ auth()->user()->industry }} @else Not set @endif
Member since {{ auth()->user()->created_at->format('M j, Y') }}
Account status Active
Security Tips
Use at least 8 characters with a mix of letters and numbers.
Avoid using the same password across multiple sites.
Never share your password with anyone.
Update your password regularly for better security.
{{-- ── Right: two forms stacked ── --}}
{{-- Form 1: Profile info --}}
Profile Information Name, email & industry
@csrf @method('PUT')
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('industry') {{ $message }} @enderror
Your industry determines which campaigns are visible to you.
{{-- Form 2: Change password --}}
Change Password Leave blank to keep current
@csrf
@error('current_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
Both passwords must match.
@endsection @push('scripts') @endpush