@extends('admin.layout.master') @section('title', "الموظفين") @section('content')

الموظفين

{{-- @include('admin.layout.message')--}}

بحث

{{--

--}} {{-- --}} {{-- --}} {{-- --}} {{--

--}}
{{csrf_field()}}
@if ($errors->has('id')) {{ $errors->first('id') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('disability_id')) {{ $errors->first('disability_id') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@foreach($rows as $row) @endforeach
رقم العضوية الاسم بالكامل الاسم البريد الالكترونى رقم الجوال الجنس الحالة التحكم
{{$row->id}} {{$row->fullname}} {{$row->username}} {{$row->email}} {{$row->mobile}} {{$row->gender == 'male' ? 'ذكر' : 'انثى'}} {{ ($row->status == 'active') ? "مفعل" : "غير مفعل" }}
@stop @section('scripts') @endsection