{!! icon('channel') !!} {{ Form::text('name', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('name') ? ' is-invalid' : ''), 'placeholder' => __('Name of the channel') ]) }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::text('slug', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('slug') ? ' is-invalid': ''), 'placeholder' => __('The human readable id of the channel') ]) }} @if ($errors->has('slug'))
{{ $errors->first('slug') }}
@endif

{{ Form::select('configuration[country_id]', $countries, null, [ 'class' => 'form-control form-control-sm' . ($errors->has('configuration') ? ' is-invalid': ''), 'placeholder' => __('--') ]) }} @if ($errors->has('configuration'))
{{ $errors->first('type') }}
@endif