@extends('layouts.admin') @section('title','Edit Recipe Category') @section('content')
{{-- Back --}} reply

Edit Recipe Category


{{-- Validation Errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- FORM --}}
@csrf @method('PUT') {{-- Category Name --}}
{{-- Actions --}}
Cancel
@endsection