Add Sub User
{!! Form::open(array('url'=>'/sub_user_add')) !!}
{!! Form::close() !!}
@if ($errors->has('name'))
The first name field is required.
@endif
@if ($errors->has('lname'))
The Last name field is required.
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif