@extends('back.template.index') @section('title', 'Edit Article') @push('css') @endpush @section('content') Edit Artikel @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @method('PUT') @csrf Title Category Description {{ old('desc', $article->desc) }} Image (Maximum 2 MB) Choose File Current Picture Status -- Choose -- status == 'published' ? 'selected' : '' }}> Published status == 'draft' ? 'selected' : '' }}>Draft status == 'archived' ? 'selected' : '' }}>Archived Publish Date Save @endsection @push('scripts') @endpush