{!! icon('carrier') !!} {{ Form::text('name', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('name') ? ' is-invalid' : ''), 'placeholder' => __('Name of the carrier') ]) }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::hidden('is_active', 0) }}
{{ Form::checkbox('is_active', 1, null, ['class' => 'custom-control-input', 'id' => 'is-shipping-method-active']) }}
@if ($errors->has('is_active')) @endif

@if ($errors->has('configuration'))
{{ $errors->first('configuration') }}
@endif