White band below footer in laravel with AdminLTE

1

I was learning to use the Laravel 5 Framework, using the AdminLTE template and it has a fact that is bothering me a lot, a straight line is appearing and so I cut the template look below the footer, someone knows how to tell me what it can be.

Follow the image

    
asked by anonymous 30.08.2017 / 15:48

1 answer

0

Make sure all page tags ( div , form , input ) that the problem appears in are closed properly.

<html>
    <head>
        <title></title>
    </head>
    <body>
        <div>
            <label></label>
            <input type="text" >
        </div>
    </body>
</html>
    
30.08.2017 / 19:00