First try this:
// change this {{ Form::text('email', '', array('class'=>'form-control', 'placeholder'=>'Email')) }}
// to:
{{ Form::email('email', null, array('class'=>'form-control', 'placeholder'=>'Email')) }}
then get rid of that:
<input type="text" name="email" placeholder="Email" autocomplete="off" class="form-control placeholder-no-fix">
as it probably should be another form
Same thing is happening ... the password value is appearing but not the email...
And the problem is only with this form ... I have a registration form also and that works fine...
Haseeb90 said:
Got it ... Thanks :)
How did you solve it? Would you please share your solution with us?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community