@extends('layouts.app') @section('content')
@foreach($artist_types as $type)
id }} class="form-check-input" name="artist_type[]" value={{$type->id}} {{ in_array($type->id, app('request')->input('artist_type') ?? []) ? 'checked' : '' }}>
@endforeach
@include('components.artist-small-card')
@endsection