@extends('layouts.app') @section('title', $category->exists ? "Editer une catégorie": "Créer une catégorie") @section('side_bar') @include('layouts.admin.side_bar_dashboard') @endsection @section('content')

@yield('title')

@csrf @method($category->exists ? 'put':"post") @include ('shared.input',['type'=> 'text', 'name' => 'name', 'label'=>'Nom de la catégorie','value'=>$category->name])
Retour
@endsection