@extends('user.layouts.master')
@section('title')
Profile
@endsection
@section('css')
@endsection
@section('content')
{{auth()->user()->name()}}
{{auth()->user()->email}}
Personal Info
-
Full Name
: {{auth()->user()->name()}}
-
Email
: {{auth()->user()->email}}
-
Phone Number
: {{auth()->user()->phone}}
-
-
@endsection
@section('js')
@endsection