@php $title = 'Edit Profile'; @endphp @extends('layouts.auth') @section('content')
Avata Image {{$user->name}} {{$user->email}}
{{-- edit profile --}}

{{__("Account Settings")}}

{{ __("Update your account's profile information and email address.") }}
@csrf @method('PUT')
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
{{-- --}}
@endsection {{--

{{ __('Profile') }}

@include('profile.partials.update-profile-information-form')
@include('profile.partials.update-password-form')
@include('profile.partials.delete-user-form')
--}}