@extends('layouts.app') @section('title', $article->title) @section('content')

{{ $article->title }}

@if($is_admin)
@lang('labels.edit_article') {{ Form::open(['method' => 'DELETE', 'route' => ['news.destroy', $article->id], 'class' => 'pull-right', 'style' => 'margin-right: 10px']) }} {{ Form::submit(trans('labels.delete_article'), ['class' => 'button delete-news']) }} {{ Form::close() }}
@endif
{!! $article->body !!}
@endsection