{{-- \resources\views\permissions\create.blade.php --}} @extends('welcome') @section('title', '| Modifier matrice') @section('content')

Modifier matrice

{!! Form::model($matrice, ['method'=>'PATCH','route'=>['matrice.update', $matrice->id]]) !!} @csrf
FORMULAIRE DE MODIFICATION MATRICE
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::close() !!}
@endsection