@extends('layouts.layout') @section('title', 'Manage Title') @section('content')

Manage Title


Manage Title
@if(Session::has('success')) @endif @if(count($errors) > 0) @endif {!! Form::model($title,['route'=>['title_update',$title->id],'method'=>'PUT']) !!}

Title :

{!! Form::submit('Update Title', ['class'=>'btn btn-primary btn-block btn-lg margin-top-20']) !!}
{!! Form::close() !!}
@endsection