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

{{$row->username}}

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

@csrf @method('PATCH')
@if ($errors->has('fullname')) {{ $errors->first('fullname') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop