@foreach ($skills as $skill)
{{ Form::checkbox('skills[]', $skill->id, isset($agent) ? $agent->skills->contains($skill) : null, [
'class' => 'form__radio',
])
}}
{{ Form::label('skills', $skill->skill, ['class' => 'label form__label form__label--radio']) }}
@endforeach