@extends('layout.app') @section('content')

{{ isset($feedentry) ? 'Edit Feed Entry' : 'Create Feed Entry' }}

@csrf @if(isset($feedentry)) @method('PUT') @endif
@if($errors->has('title')) {{ $errors->first('title') }} @endif
@if($errors->has('description')) {{ $errors->first('description') }} @endif
@if($errors->has('link')) {{ $errors->first('link') }} @endif
@if($errors->has('feed_channel_id')) {{ $errors->first('feed_channel_id') }} @endif
@if($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection