@extends('admin.layout.master') @section('title', 'مستخدمين الموقع') @section('content')
مستخدمين الموقع
إنشاء جديد
@csrf
الإسم
@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('image'))
{{ $errors->first('image') }}
@endif
كلمة المرور
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
الاشتراك
اختر نوع الباقة
@foreach($subscriptions as $subscription)
{{$subscription->name['ar']}}
@endforeach
@if ($errors->has('subscription_id'))
{{ $errors->first('subscription_id') }}
@endif
الحالة
مفعل
غير مفعل
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
حفظ
@stop @section('scripts') @stop