{!! icon('taxonomy') !!} {{ Form::text('name', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('name') ? ' is-invalid' : ''), 'placeholder' => __('Name of the Category Tree') ]) }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif

{{ Form::text('slug', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('slug') ? ' is-invalid': ''), 'placeholder' => __('URL (leave empty to auto-generate from name)') ]) }} @if ($errors->has('slug'))
{{ $errors->first('slug') }}
@endif