@extends('admin.layout.dashboard-template') @section('content')
@csrf

News Details

@if (session('success')) @endif @if (session('error')) @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('published_date')) {{ $errors->first('published_date') }} @endif
@if ($errors->has('published_time')) {{ $errors->first('published_time') }} @endif
@if ($errors->has('detail_news')) {{ $errors->first('detail_news') }} @endif

* Upload Featured Image

@if ($errors->has('featured_image')) {{ $errors->first('featured_image') }} @endif

* Upload News Images

@if ($errors->has('news_images')) {{ $errors->first('news_images') }} @endif
@endsection