@extends('layouts.app') @section('content')
{{ isset($category) ? 'Edit Category' : 'Create Category' }}
Back
@include('partials.errors')
@csrf @if(isset($category)) @method('PUT') @endif
@if(isset($category) && !empty($category->image))
@endif
@endsection