@extends('layout.layout') @php $title = 'Edit Profil'; $subTitle = 'Profil Pengguna'; @endphp @section('content')
Edit Profil
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Informasi Akun:
  • Bergabung: {{ $user->created_at->format('d/m/Y H:i:s') }}
  • Terakhir diperbarui: {{ $user->updated_at->format('d/m/Y H:i:s') }}
  • Role: @if ($user->roles->count() > 0) @foreach ($user->roles as $role) {{ $role->name }} @endforeach @else Tidak ada role @endif
Batal
@endsection