@extends('layouts.app') @section('page-title', 'Profile') @section('content')
Profile
@auth

Name: {{ auth()->user()->name }}

Email: {{ auth()->user()->email }}

@else

Please log in to view your profile.

@endauth
@endsection