@extends('layouts.main') @section('title', 'Edit Profil - POLJAM TECH') @section('content')
@if($user->photo && file_exists(public_path('uploads/profiles/' . $user->photo))) Profile Photo @else
{{ strtoupper(substr($user->name, 0, 1)) }}
@endif

{{ $user->name }}

{{ $user->email }}

@if($user->phone)

{{ $user->phone }}

@endif

Informasi Akun

Status Akun Aktif
Email Terverifikasi @if($user->email_verified_at) @else @endif
Bergabung {{ $user->created_at->format('M Y') }}

Tips Foto Profil

Gunakan foto yang jelas dan profesional. Format: JPG, PNG, GIF (Max: 2MB)

@csrf @method('patch')

Informasi Pribadi

@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

Email belum terverifikasi

Email Anda belum terverifikasi.

@if (session('status') === 'verification-link-sent')

Link verifikasi telah dikirim ke email Anda.

@endif
@endif

Informasi Kontak

Informasi ini akan digunakan untuk pengiriman dan komunikasi

Format: +6281234567890 atau 081234567890

@error('phone')

{{ $message }}

@enderror

Alamat lengkap untuk pengiriman produk

@error('address')

{{ $message }}

@enderror

Kode pos 5 digit

@error('postal_code')

{{ $message }}

@enderror

Keamanan Akun

Ubah password untuk menjaga keamanan akun Anda

@include('profile.partials.update-password-form-simple')

Hapus Akun

Tindakan ini tidak dapat dibatalkan

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