- Sales Manager Information
-
First name{!! Form::text('firstname','',array('size'=>'50','class'=>'required','id'=>'firstname')) !!} @if($errors->manager->first('firstname')){!!$errors->manager->first('firstname')!!}@endifLast name{!! Form::text('lastname','',array('size'=>'50','class'=>'required','id'=>'lastname')) !!} @if($errors->manager->first('lastname')){!!$errors->manager->first('lastname')!!}@endifEmail Address{!! Form::email('email','',array('size'=>'50','class'=>'required')) !!} @if($errors->manager->first('email')){!!$errors->manager->first('email')!!}@endifPassword
at least 8 char an uppercase a number special char {!!$errors->manager->first('password')!!}@endifPhone no{!! Form::text('phone','',array('size'=>'50','class'=>'phone_us')) !!}Address{!! Form::text('address','',array('size'=>'50')) !!} @if($errors->manager->first('address')){!!$errors->manager->first('address')!!}@endifGender{!! Form::radio('gender', 'Male',1) !!} Male {!! Form::radio('gender', 'Female') !!} FemaleBirthdateStatus{!! Form::radio('status', 1,0) !!} Pending {!! Form::radio('status',2,1) !!} ActivePromo Code{!! $promocode !!} {!! Form::hidden('promocode',$promocode) !!}