@extends('admin.layout.master') @section('title', 'التجار') @section('content')
التجار
تعديل البيانات
@csrf @method('PATCH')
الاسم
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
البريد الألكترونى
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
رقم الجوال
@if ($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
رابط التاجر
@if ($errors->has('market_link'))
{{ $errors->first('market_link') }}
@endif
المحفظة
@if ($errors->has('wallet'))
{{ $errors->first('wallet') }}
@endif
النقاط
@if ($errors->has('points'))
{{ $errors->first('points') }}
@endif
صورة
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
صورة السجل التجارى
@if ($errors->has('commercial_image'))
{{ $errors->first('commercial_image') }}
@endif
الحالة
status == 'active' ? 'selected' : ''}} value="active">مفعل
status == 'not_active' ? 'selected' : ''}} value="not_active">غير مفعل
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
كلمة المرور
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
تعديل
@stop