@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.blog.title_singular') }}
@csrf
@if($errors->has('title')) {{ $errors->first('title') }} @endif {{ trans('cruds.blog.fields.title_helper') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif {{ trans('cruds.blog.fields.description_helper') }}
@foreach(App\Models\Blog::STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.blog.fields.status_helper') }}
@if($errors->has('order')) {{ $errors->first('order') }} @endif {{ trans('cruds.blog.fields.order_helper') }}
@if($errors->has('source')) {{ $errors->first('source') }} @endif {{ trans('cruds.blog.fields.source_helper') }}
@if($errors->has('featured_image')) {{ $errors->first('featured_image') }} @endif {{ trans('cruds.blog.fields.featured_image_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('categories')) {{ $errors->first('categories') }} @endif {{ trans('cruds.blog.fields.category_helper') }}
@if($errors->has('additional_files')) {{ $errors->first('additional_files') }} @endif {{ trans('cruds.blog.fields.additional_files_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('tags')) {{ $errors->first('tags') }} @endif {{ trans('cruds.blog.fields.tag_helper') }}
@endsection @section('scripts') @endsection