@extends('main') @section('title' , "| Edycja Tagu") @section('content') {{ Form::model($tag, ['route' => ['tags.update' , $tag->id], 'method' => "PUT"]) }} {{ Form:: label('name' , 'Title:') }} {{ Form::text('name', null, ['class' => 'form-control']) }} {{ Form::submit('Zapisz Zmiany', ['class' => 'btn btn-success edit-show-button']) }} {{ Form::close() }} @endsection