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

Modifier type

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