@extends('layouts.admin.app') @section('title','Edit Category - ' . $category->title) @section('content')
@csrf @method('patch')

@yield('title')

{{ __('Back') }}
@if($errors->any())
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif @if(Session::has('message'))
{{ Session::get('message') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif

@endsection @section('js') @endsection