@extends('layouts.user') @section('page-title', 'My Profile') @section('content')

My Profile

Company Information
Company Name
{{ $user->company_name }}
Contact Person
{{ $user->contact_person }}
Username
{{ $user->username }}
Mobile
{{ $user->mobile }}
GST Number
{{ $user->gst_number ?: '—' }}
Customer Code
{{ $user->customer_code }}
Address
Billing Address
{{ $user->billing_address }}
Shipping Address
{{ $user->shipping_address }}
City
{{ $user->city }}
State
{{ $user->state }}
Pincode
{{ $user->pincode }}
Payment & Credit
Credit Limit
₹{{ number_format($user->credit_limit,2) }}
Outstanding
₹{{ number_format($user->outstanding_amount,2) }}
Payment Terms
{{ $user->payment_terms }}

Contact your account manager to update profile details.

@endsection