@extends('frontend.layout.dashboard-master') @section('site_title', __('Profile Settings')) @section('style') @endsection @section('content') @php $user = Auth::guard('web')->user(); @endphp

{{ __('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 {{-- Buttons --}}
{{-- Photo upload form + preview modal --}}
@csrf
@endsection @section('script') @endsection