@extends('layouts.app')
@section('title')
Modifier un tag
@endsection
@section('page-title')
Comptes Modifier : {{ $tag->name }}
@endsection
@section('button-top')
@endsection
@section('content')
{!! Form::model($tag, ['method' => 'PATCH', 'route' => ['tags.update', $tag->id]]) !!}
@include('tags.form')
{!! displayButton('Modifier ce tag', 'btn btn-info mT-20 mB-30') !!}
{!! Form::close() !!}
@endsection