laravel 5.2 blade template failing to parse
Please check the first line:
@extends('layouts.main)
The closing single quote ('
) is missing. It should be:
@extends('layouts.main')
Use this as your first line:
@extends('layouts.main')
We often forget to put '
on last word. Happens!