{!! Form::text('full_name', null, [
'class' => 'form-control',
'placeholder' => trans('Enter the name'),
]) !!}
@if ($errors->has('full_name'))
{{ $errors->first('full_name') }}
@endif
{{ Form::text('email', null, ['class' => 'form-control', 'id' => 'email', 'placeholder' => trans('admin_lang.enter_the_email')]) }}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ Form::tel('mobile_number', null, ['class' => 'form-control', 'id' => 'mobile_number', 'placeholder' => trans('Enter the number')]) }}
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if (empty($sdata))
{{ Form::tel('password', null, ['class' => 'form-control', 'id' => 'password', 'placeholder' => trans('Enter the password')]) }}
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endif
{!! Form::select(
'role_id',
['' => 'Select role', '2' => 'business', '3' => 'client'],
null,
['class' => 'form-control role', 'id' => 'role'],
) !!}
@if ($errors->has('role'))
{{ $errors->first('role') }}
@endif