{{ Form::select('scope', $scopes, $zone->scope?->value(), [
'class' => 'form-control form-control-sm' . ($errors->has('scope') ? ' is-invalid': ''),
'placeholder' => __('Choose Scope')
])
}}
@if ($errors->has('scope'))
{{ $errors->first('scope') }}
@endif