@extends('layouts.main',['title'=>'Application Summery']) @section('head') @endsection @section('content')
@csrf

Input Your Personal Info

Join our member program by filling in your details below—fields marked with (*) are required, and the rest are optional; feel free to upload a picture!

@php // Get current user's marketplaces (comma-separated) $userMarketplaces = strtolower(auth()->guard('member')->user()->memberInfo->cbmMarketPlaces ?? ''); // Convert to an array and trim spaces $selectedMarketplaces = array_map('trim', explode(',', $userMarketplaces)); @endphp

Upload Profile Photo

Upload Profile Photo

@php $profile_img = asset('images/profile-img.png'); if(!empty(auth()->guard('member')->user()->memberInfo->cbmPhoto)) { $profile_img = env('CB_MAIN_APP_URL') . '/' . auth()->guard('member')->user()->memberInfo->cbmPhoto; } @endphp profile-img

Powered By Axencis

@endsection @section('script') @endsection