@extends('_layouts.default')
@section('content')
@include('_layouts.partials.breadcrumbs.note_edit')
{{{ ucfirst(Lang::get('messages.note_edit')) }}}
{{ Form::model($note, array('route' => array('notes.update', $note->id), 'method' => 'put')) }}
@include('_layouts.partials.forms.note')
{{ Form::close() }}
@stop