@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.marketingBlogArticle.title_singular') }}
@csrf
@if($errors->has('title')) {{ $errors->first('title') }} @endif {{ trans('cruds.marketingBlogArticle.fields.title_helper') }}
@if($errors->has('author')) {{ $errors->first('author') }} @endif {{ trans('cruds.marketingBlogArticle.fields.author_helper') }}
@if($errors->has('duration')) {{ $errors->first('duration') }} @endif {{ trans('cruds.marketingBlogArticle.fields.duration_helper') }}
@if($errors->has('image')) {{ $errors->first('image') }} @endif {{ trans('cruds.marketingBlogArticle.fields.image_helper') }}
@if($errors->has('article_text')) {{ $errors->first('article_text') }} @endif {{ trans('cruds.marketingBlogArticle.fields.article_text_helper') }}
@endsection @section('scripts') @endsection