@extends('layout.mainlayout') @section('content') @component('components.breadcrumb') @slot('title') My Profile @endslot @slot('item1') Portal @endslot @slot('item2') Profile @endslot @endcomponent
image
{{ auth()->user()->name ?? 'Customer' }}
Customer
Profile Information
@if (session('success'))
{{ session('success') }}
@endif
@csrf
@endsection