{!! Form::open(array('route' => 'roles.store','method'=>'POST')) !!}
{!! Form::text('name', null, array('placeholder' => 'Name','class' => 'form-control')) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('permission'))
{{ $errors->first('permission') }}
@endif