@extends('layouts.app') @section('title', 'User Dashboard') @section('page-title', 'My Dashboard') @section('sidebar') @include('partials.user-sidebar') @endsection @section('content')

Welcome, {{ auth()->user()->name }} 👋

This is your User panel.

From here you can manage your profile.

@endsection