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

@yield('title')

@csrf @method($image->exists ? 'PUT' : 'POST') @include ('shared.input',['type'=> 'text', 'name' => 'name', 'label'=>'nom de l\'image','value'=>$image->name]) @include ('shared.input',['type'=> 'file', 'name' => 'path', 'label'=>'','value'=>$image->path])
@endsection