@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.publication.title_singular') }}
@csrf
@if($errors->has('title')) {{ $errors->first('title') }} @endif {{ trans('cruds.publication.fields.title_helper') }}
@if($errors->has('slug')) {{ $errors->first('slug') }} @endif {{ trans('cruds.publication.fields.slug_helper') }}
@if($errors->has('image')) {{ $errors->first('image') }} @endif {{ trans('cruds.publication.fields.image_helper') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif {{ trans('cruds.publication.fields.description_helper') }}
@if($errors->has('pdf_file')) {{ $errors->first('pdf_file') }} @endif {{ trans('cruds.publication.fields.pdf_file_helper') }}
@foreach(App\Models\Publication::STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.publication.fields.status_helper') }}
@endsection @section('scripts') @endsection