@extends('layouts.admin') @section('title', 'Edit Category') @section('breadcrumbs', 'Categories' ) @section('second-breadcrumb')
  • Edit
  • @endsection @section('content')

    @csrf
    {{$errors->first('name')}}
    {{$errors->first('slug')}}
    {{$errors->first('description')}}
    @if($category->image) {{-- image --}} @else No Image @endif Kosongkan jika tidak ingin mengubah gambar.
    Back
    @endsection