majidkhan said:
The form submits but show blank page
Time to enable debugging!
app/config/app.php -> 'debug' => true,
First, check to see if your route is hot OK.
Route::post('contact', function() {
dd(Input::all());
}
If it is, you probably don't have your mail set up correctly. Check settings in app/config/mail.php and make sure sending mail is enabled on your server as well.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community