- Client Information
-
First name{!! Form::text('firstname',$client->fldClientFirstname,array('size'=>'50','class'=>'required','required','id'=>'firstname')) !!} @if($errors->client->first('firstname')){!!$errors->client->first('firstname')!!}@endifLast name{!! Form::text('lastname',$client->fldClientLastname,array('size'=>'50','class'=>'required','required','id'=>'lastname')) !!} @if($errors->client->first('lastname')){!!$errors->client->first('lastname')!!}@endifPhone Number{!! Form::text('phone',$client->fldClientContact,array('size'=>'50','pattern'=>'\d{3}[\-]\d{3}[\-]\d{4}','class'=>'required','required')) !!} eg 123-456-7890 @if($errors->client->first('phone')){!!$errors->client->first('phone')!!}@endifEmail Address{!! Form::email('email',$client->fldClientEmail,array('size'=>'50','class'=>'required','id'=>'email','required')) !!} @if($errors->client->first('email')){!!$errors->client->first('email')!!}@endifPassword
at least 8 char an uppercase a number special char {!!$errors->client->first('password')!!}@endif