Modifier {{ $typePartenaire->name }}
{!! Form::model($typePartenaire, ['method' => 'PUT', "url" => route('admin-cnp.partenaires.update', $typePartenaire)]) !!}
{!! Form::text('name', null, ["placeholder" => "Nom", "class" => "form-control", "required"]) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::close() !!}