@extends('admin.layouts.app') @section('title',Request()->settings->settings_website.' | Edit News') @section('contents')
Edit News
@csrf
@if($errors->has('news_category'))
{{ $errors->first('news_category') }}
@endif
@if($errors->has('news_date'))
{{ $errors->first('news_date') }}
@endif
@if($errors->has('news_title'))
{{ $errors->first('news_title') }}
@endif
@if($errors->has('news_details'))
{{ $errors->first('news_details') }}
@endif
@if(!empty($news->news_image)) @else @endif
@if($errors->has('news_image'))
{{ $errors->first('news_image') }}
@endif
@endsection @section('custom_script') @endsection