@extends('layout.main') @section('body') @php $menu = 'Profile'; $pageTitle = 'User Profile'; @endphp @include('layout.navbar') @include('layout.sidebar') {{-- Main Content --}}
@if (Auth::user()->profile_picture) @else @endif
{{ Auth::user()->name }}

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

@csrf

Data Diri

  • Please fill in your name
    @if ($errors->has('name'))
    {{ $errors->first('name') }}
    @endif
  • Please fill in your username
    @if ($errors->has('username'))
    {{ $errors->first('username') }}
    @endif
  • Please fill in your email
    @if ($errors->has('email'))
    {{ $errors->first('email') }}
    @endif
@csrf

Data Password

  • Please fill in your current password
    @if ($errors->has('password'))
    {{ $errors->first('password') }}
    @endif
  • Please fill in your new password
    @if ($errors->has('new_password'))
    {{ $errors->first('new_password') }}
    @endif
@endsection