Laravel - Adding The CSRF Token To A Form

I have been adding a hidden CSRF field to all my forms but it seems this no longer required:

{!! Form::token() !!}
{!! csrf_field() !!}
<input type="hidden" name="_token" value="{{ csrf_token() }}" />

If you use the Form::open method with POST, PUT or DELETE the CSRF token will be added to your forms as a hidden field automatically.