@extends('layouts.app') @section('page-title', 'Profile') @section('content')
{{ Auth::user()->name }}

{{ Auth::user()->name }}

{{ ucfirst(str_replace('_', ' ', Auth::user()->role)) }}

Profile Information

@include('profile.partials.update-profile-information-form')

Update Password

@include('profile.partials.update-password-form')
@if(!Auth::user()->isGymOwner())

Delete Account

@include('profile.partials.delete-user-form')
@endif
@endsection