@extends('back.layouts.layout') @section('title','Add Announcement') @section('content-header') Add Announcement Dashboard Announcement Add Announcement @endsection @section('content') @csrf @method('post') Title * @if ($errors->has('title')){{ $errors->first('title') }}@endif Description {{ old('description') }} @if ($errors->has('description')){{ $errors->first('description') }}@endif Excerpt {{ old('excerpt') }} @if ($errors->has('excerpt')){{ $errors->first('excerpt') }}@endif Image @if ($errors->has('image')){{ $errors->first('image') }} @endif Status @foreach($statuses as $key=> $status) {{ $status }} @endforeach @if ($errors->has('status')){{ $errors->first('status') }} @endif Publish Save Announcement List @endsection