{{ Form::open(['route' => 'feature.store', 'method' => 'post', 'files' => true]) }}
{{ Form::label('name', 'Feature Name', ['class' => 'control-label']) }}
{{ Form::text('name', null, ['placeholder' => 'Enter Feature Name', 'class' => 'form-control']) }}
{{ Form::label('icon', 'Icon', ['class' => 'control-label']) }}
{{ Form::label('description', 'Description', ['class' => 'control-label']) }}
{{ Form::textarea('description', null, ['placeholder' => 'Enter Description', 'class' => 'form-control']) }}
{!! Form::submit('Submit', ['class' => 'form-control, btn btn-success ']) !!}
{{ Form::close() }}