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

Profile

Kelola informasi profile Anda

@csrf @method('PUT')
@php $photoPath = $user->photo ?? null; $version = optional($user->updated_at)->timestamp ?? time(); $photoUrl = $photoPath ? (route('media.show', ['path' => ltrim($photoPath, '/')]) . '?v=' . $version) : null; $photoExists = $photoPath ? \Illuminate\Support\Facades\Storage::disk('public')->exists($photoPath) : false; @endphp
@if($user->photo) Profile @else {{ strtoupper(substr($user->name, 0, 1)) }} @endif

JPG, PNG, WEBP, HEIC (Max 16MB)

@error('photo')

{{ $message }}

@enderror
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror

Ubah Password

Kosongkan jika tidak ingin mengubah password

@error('password')

{{ $message }}

@enderror
@push('scripts') @endpush @endsection