@extends('admin.layouts.app') @section('title', 'User Profile | Shortties') @section('main') Profile Home Users Profile {{ $user->name }} {{ $user->role->name ?? 'N/A' }} Overview Edit Profile Change Password Profile Details Full Name {{ $user->name }} Email {{ $user->email }} Phone Number {{ $user->phone }} Privacy {{ $user->privacy ?? 'N/A' }} Bio {{ $user->bio }} @csrf @method('PUT') Profile Image Full Name Email Phone Number Privacy user()->privacy == 'public' ? 'selected' : '' }}>Public user()->privacy == 'private' ? 'selected' : '' }}>Private Bio {{ $user->bio }} Save Changes @csrf Current Password New Password Confirm New Password Change Password @endsection @push('scripts') @endpush