@extends('frontend.layouts.user_panel') @section('panel_content')

{{ translate('Manage Profile') }}

@csrf
{{ translate('Basic Info')}}
{{ translate('Browse')}}
{{ translate('Choose File') }}
{{ translate('Address')}}
@foreach (Auth::user()->addresses as $key => $address)
{{ translate('Address') }}: {{ $address->address }}
{{ translate('Postal Code') }}: {{ $address->postal_code }}
{{ translate('City') }}: {{ $address->city }}
{{ translate('Country') }}: {{ $address->country }}
{{ translate('Phone') }}: {{ $address->phone }}
@if ($address->set_default)
{{ translate('Default') }}
@endif
@endforeach
{{ translate('Add New Address') }}
{{ translate('Payment Setting')}}

@csrf
{{ translate('Change your email')}}
@endsection @section('modal') @endsection @section('script') @endsection