@extends('web.layouts.app') @section('title','حسابي') @section('content')
حسابي
مشتراتي
مفضلاتي
بياناتي الشخصيه
الحماية
{{csrf_field()}}
الاسم الاول
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
اسم العائلة
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
رقم الهاتف
@if ($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
البريد الالكتروني
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
حفظ
{{csrf_field()}}
كلمة مرور جديدة
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
تاكيد كلمة المرور الجديدة
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
حفظ
@endsection