@extends('dashboard_layout') @section('content')
@if(Session::has('submit-status'))

{{ Session::get('submit-status') }}

@endif @if(Session::has('error-status'))

{{ Session::get('error-status') }}

@endif

Edit Existing News

{{ csrf_field() }}
{{ $errors->first('title') }}
{{ $errors->first('description') }}
@if($news->image && file_exists(public_path() ."/upload/news_image/resize/".$news->image)) @else @endif {{ $errors->first('image') }}
{{ $errors->first('status') }}
@endsection