@extends('frontends.layouts.index') @section('content')

{{ __('Tour Blog') }}

{{ __('Lets Share How You Feel Today.') }}

Image

{{ $blog->title }}

{!! $blog->getSelfTranslation('description') !!}

{{ $blog->total_count_comments }} {{ __('comments') }}

    @foreach($blog->comments as $comment)
  1. {{ __('Posted by') }} {{ $comment->name }} | {{ $comment->get_date() }}

    {!! nl2br($comment->message) !!}

  2. @endforeach

{{ __('Leave a comment') }}

{!! Form::open(['url'=>action('Admin\BlogCommentController@postNew'),'method'=>'post']) !!} {!! Form::hidden('blog_title', $blog->title) !!}
{!! Form::text('name', null, ['class'=>'form-control style_2','placeholder'=>__('Enter Name')]) !!}
{!! Form::email('email', null, ['class'=>'form-control style_2','placeholder'=>__('Enter Email')]) !!}
{!! Form::textarea('message', null, ['rows'=>7,'class'=>'form-control style_2','placeholder'=>__('Message...')]) !!}
{!! Form::close() !!}
@stop @section('script') @stop