@extends('admin.layout.master') @section('title', " المستخدم $row->username") @section('content')

{{'المستخدم ' . $row->username}}

تعديل البيانات

@csrf @method('PATCH')
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif

صورة

@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop @section('scripts') @stop