{!! Form::label('name', 'الاسم') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!} @if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::label('email', 'البريد الإلكتروني') !!} {!! Form::text('email', null, ['type' => 'email', 'class' => 'form-control']) !!} @if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{!! Form::label('phone_number', 'رقم الجوال') !!} {!! Form::text('phone_number', null, ['class' => 'form-control']) !!} @if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
{!! Form::label('email', 'كلمة السر') !!} {!! Form::password('password', ['class' => 'form-control']) !!} @if($errors->has('password'))
{{ $errors->first('password') }}
@endif
{!! Form::label('roles_id', 'الدوار') !!} {!! Form::select('roles_id[]', $roles, null, ['id' => 'roles_id', 'class' => 'form-control select2']) !!} @if($errors->has('roles_id'))
{{ $errors->first('roles_id') }}
@endif