@extends('frontend.layout.dashboard-master') @section('site_title', __('Profile Settings')) @section('style') @endsection @section('content') @php $user = Auth::guard('web')->user(); $feedback = \App\Models\Feedback::where('user_id', $user->id)->first(); @endphp
{{-- Header: "Your Profile" + Feedback button --}}

{{ __('Your Profile') }}

{{-- Profile Picture --}}
@if(!empty($user->image)) @if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3','cloudFlareR2','wasabi'])) {{ __('profile') }} @else {{ __('profile') }} @endif @else {{ __('profile') }} @endif
{{-- Personal Information form --}}
@csrf

{{ __('Personal Information') }}

{{-- First Name / Last Name --}}
{{-- Email --}}
{{-- Country --}}
@if(!moduleExists('CoinPaymentGateway')) {{-- State --}}
{{-- City --}}
@endif {{-- Experience Level --}}
{{-- Buttons --}}
{{-- ── Photo upload form + preview modal ────────────────────────────────── --}}
@csrf
{{-- ── Feedback modal ──────────────────────────────────────────────────────── --}} @endsection @section('script') @endsection