I was trying to add bootstrap to my laravel app but its not working properly. while creating text area using bootstrap, i can see the text area but below text area its showing error:
Whoops, looks like something went wrong.
1/1
FatalErrorException in bd4dbbba0de3e338e8b6884bcb514092774bce38.php line 21:
Class 'HTML' not found
in bd4dbbba0de3e338e8b6884bcb514092774bce38.php line 21
home.blade.php
<!Doctype html>
<html>
<head>
<title>
BloggerFramework
</title>
</head>
<body>
<div class="form-group">
<label for="article">Write something Awesome</label>
<textarea class="form-control" rows="20" cols="100" id="article"></textarea>
</div>
</body>
{{ HTML::style('css/bootstrap.min.css')}}
{{ HTML::style('css/mystyle.css') }}
{{ HTML::script('js/jquery.min.js') }}
{{ HTML::script('js/jquery.ui.min.js') }}
{{ HTML::script('js/bootstrap.min.js') }}
</html>
can someone suggest any best practices for using front-end with laravel app