@extends('layouts.admin') @section('title', $category->exists ? 'Edit Category' : 'New Category') @section('content')

{{ $category->exists ? 'Edit' : 'New' }} Category

@csrf @if($category->exists) @method('PUT') @endif
@endsection