@extends('admin.layouts.master') @section('content')

{{ __('admin.Profile') }}

Hi, {{ $user->name }}

{{ __('admin.Change information about yourself on this page') }}.

@csrf @method('PUT')

{{ __('admin.Edit Profile') }}

@error('image')

{{ $message }}

@enderror
{{ __('admin.Please fill in the name') }}
@error('name')

{{ $message }}

@enderror
{{ __('admin.Please fill in the email') }}
@error('email')

{{ $message }}

@enderror
@csrf @method('PUT')

{{ __('admin.Update Password') }}

{{ __('admin.Please fill in the old password') }}
@error('current_password')

{{ $message }}

@enderror
{{ __('admin.Please fill in the new password') }}
@error('password')

{{ $message }}

@enderror
{{ __('admin.Please fill in the confirmed password') }}
@endsection @push('scripts') @endpush