@extends('components.layout.admin.container') @section('title', 'Blog') @section('links') @endsection @section('main') Kembali @if ($errors->any()) Beberapa error ketika mencoba menyimpan data: @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @csrf @method('PUT') cover image title content {{ $blog->body }} summary {{ $blog->summary }} show show ? 'checked' : '' }}> submit @endsection @section('scripts') @endsection
Kembali