{!! Form::label('firstname', '* First Name',array('class'=>'lbl' )); !!}
{!! Form::text('firstname','',array('id'=>'firstname','required','class'=>'text')) !!}
@if($errors->salesrep->first('firstname'))
{!!$errors->salesrep->first('firstname')!!}
@endif
{!! Form::label('lastname', '* Last Name',array('class'=>'lbl' )); !!}
{!! Form::text('lastname','',array('id'=>'lastname','required','class'=>'text')) !!}
@if($errors->salesrep->first('lastname'))
{!!$errors->salesrep->first('lastname')!!}
@endif
{!! Form::label('phone', '* Contact #',array('class'=>'lbl' )); !!}
{!! Form::text('phone','',array('id'=>'phone','required','class'=>'text phone_us')) !!}
@if($errors->salesrep->first('phone'))
{!!$errors->salesrep->first('phone')!!}
@endif
{!! Form::label('email', '* Email Address',array('class'=>'lbl' )); !!}
{!! Form::email('email','',array('id'=>'email','required','class'=>'text')) !!}
@if($errors->salesrep->first('email'))
{!!$errors->salesrep->first('email')!!}
@endif
{!! Form::label('password123', '* Password',array('class'=>'lbl table-text light' )); !!}
{!! Form::password('password',array('id'=>'password_fld','class'=>'text')) !!}
@if($errors->salesrep->first('password'))
at least 8 char | an uppercase | a number | special char |
{!!$errors->salesrep->first('password')!!}
@endif