@extends('admin.layouts.master') @section('content') {{ __('admin.Profile') }} Dashboard Profile Hi, {{ $user->name }} {{ __('admin.Change information about yourself on this page') }}. @csrf @method('PUT') {{ __('admin.Edit Profile') }} {{ __('admin.Choose File') }} @error('image') {{ $message }} @enderror {{ __('admin.First Name') }} {{ __('admin.Please fill in the name') }} @error('name') {{ $message }} @enderror {{ __('admin.Email') }} {{ __('admin.Please fill in the email') }} @error('email') {{ $message }} @enderror @csrf @method('PUT') {{ __('admin.Update Password') }} {{ __('admin.Old Password') }} {{ __('admin.Please fill in the old password') }} @error('current_password') {{ $message }} @enderror {{ __('admin.New Password') }} {{ __('admin.Please fill in the new password') }} @error('password') {{ $message }} @enderror {{ __('admin.Confirmed Password') }} {{ __('admin.Please fill in the confirmed password') }} @endsection @push('scripts') @endpush
{{ __('admin.Change information about yourself on this page') }}.
{{ $message }}