@extends('admin.dashboard.layout') @section('content') Category Edit Category @csrf @method('PUT') Category Name : * @error('name') {{ $message }} @enderror Parent Category : Select Category @foreach ($categories as $key => $parentCategory) parent_id) == $key ? 'selected' : '' }}> {{ $parentCategory }} @endforeach @error('parent_id') {{ $message }} @enderror Update @endsection @section('scripts') @endsection