@extends('layouts.app') @section('content')

Edit Subcategory #{{ $subcategory->id }}

@can('view-'.str_slug('Subcategory')) Back @endcan

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ method_field('PATCH') }} {{ csrf_field() }} @include ('admin.subcategory.form', ['submitButtonText' => 'Update'])
@include('layouts.admin.footer')
@endsection