@extends('layouts.app', ['title' => __('User Profile')]) @section('content') @include('users.partials.header', [ 'title' => __('Halo') . ' '. auth()->user()->name, 'description' => __('Ini adalah halaman profil Anda. Anda dapat merubah nama, email, dan password pada halaman ini'), 'class' => 'col-lg-7' ])

{{ __('Edit Profile') }}

@csrf @method('put')
{{ __('User information') }}
@if (session('status')) @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

@csrf @method('put')
{{ __('Password') }}
@if (session('password_status')) @endif
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@include('layouts.footers.auth')
@endsection