@extends('layouts.master') @section('content')

Eintrag editieren

{{ Form::model($guestbook, array('method' => 'put', 'route' => array('guestbook.update', $guestbook->id))) }}

Name: {{ $guestbook->name }}
Datum: {{ $guestbook->created_at->format('d.m.Y H:i') }}

{{ Form::textarea('comment') }}
@if(!is_null($guestbook->replies))

User: {{ $guestbook->replies->user->username }}
Antwort am: {{ $guestbook->replies->created_at->format('d.m.Y H:i') }} Uhr

{{ Form::textarea('reply',$guestbook->replies->comment) }} {{ Form::hidden('reply_id',$guestbook->replies->id) }}

@else


Antwort

{{ Form::textarea('reply') }} @endif
{{ Form::submit('Speichern',['class'=>'button alert right']) }} {{ Form::close() }}
@stop