@extends('back.layouts.layout') @section('title','Add Announcement') @section('content-header')

Add Announcement

@endsection @section('content')
@csrf @method('post')
@if ($errors->has('title')){{ $errors->first('title') }}@endif
@if ($errors->has('description')){{ $errors->first('description') }}@endif
@if ($errors->has('excerpt')){{ $errors->first('excerpt') }}@endif
Image
@if ($errors->has('image')){{ $errors->first('image') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection