@extends('admin.layouts.profile') @section('page-title') تعديل معلومات الحساب @endsection @section('profile-picture'){{ URL::asset('/' . Auth::guard('admin')->user()->image) }}@endsection @section('user-name') {{ Auth::guard('admin')->user()->name }} @endsection @section('user-email') {{ Auth::guard('admin')->user()->email }} @endsection @section('profile-item') @endsection @section('profile-title') عرض الملف الشخصي @endsection @section('profile-content')
@if (session('Done')) @endif @if (session('ERROR')) @endif @if ($errors->any()) @endif
@csrf {{ method_field('PUT') }}

1. البيانات الأساسية

@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
00966
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif

2. تغيير كلمة المرور

يمكنك تركها فارغة اذا اردت الاحتفاظ بنفس الكلمة الحالية

@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif


@endsection