@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@foreach($genres as $genre)
id, old('genres', $selectedGenres)) ? 'checked' : '' }} class="form-check-input">
@endforeach
@foreach($authors as $author)
id, old('authors', $selectedAuthors)) ? 'checked' : '' }} class="form-check-input">
@endforeach
{{ old('title', $article->title) }}
@if ($errors->has('cover_image'))
{{ $errors->first('cover_image') }}
@endif
@section('ArticleScripts') @endsection