@extends('frontend.app') @section('content') @php use App\Models\Information; $information = Information::first(); // ✅ same as "Order করুন" button logic $brandGradient = $information->gradient_code ?? 'linear-gradient(90deg,#0d6efd,#00276C)'; $brandText = $information->primary_color ?? '#ffffff'; @endphp
@php $fullName = trim((auth()->user()->first_name ?? '').' '.(auth()->user()->last_name ?? '')); $short = strtoupper(mb_substr(auth()->user()->first_name ?? 'U', 0, 1)); @endphp
Hello {{ $fullName }}

Welcome back! Manage your orders & account details easily.

{{ $short }}
{{ $fullName }}
My Account
{{-- left nav --}}
{{-- right content --}}
Hello {{ auth()->user()->first_name }} 👋

From your account dashboard you can view your recent orders, manage your shipping and billing addresses, and edit your password and account details.

@endsection