I am learning Laravel as my first framework, I saw, they have own syntax for create forms eg:
Laravel Inputs:
{{ Form::text('email', '', array('placeholder' => 'Email')) }}
{{ Form::password('password', array('placeholder' => 'Password')) }}
{{ Form::submit('Login', array('class' => 'btn btn-success')) }}
HTML Inputs:
<input type="text" name="email" placeholder="Email"/>
<input type="password" name="password" placeholder="Password"/>
<input type="submit" name="submit" value="Login" class="btn btn-success"/>
what are the advantages, I can get, if i use Laravel syntax for create forms? thank you