@extends('admin.layout') @section('content')

{{ trans('labels.EditNews') }} {{ trans('labels.EditNews') }}...

Edit News

@if( count($errors) > 0) @foreach($errors->all() as $error) @endforeach @endif {!! Form::open(array('url' =>'admin/updateNews', 'method'=>'post', 'class' => 'form-horizontal form-validate', 'enctype'=>'multipart/form-data')) !!} {!! Form::hidden('id', $result['news'][0]->news_id, array('class'=>'form-control', 'id'=>'id')) !!}
{{ trans('labels.ChooseNewsCategory') }}

@foreach($result['description'] as $description_data)
{{ trans('labels.TitleNews') }} ({{ $description_data['language_name'] }})
{{ trans('labels.Description') }} ({{ $description_data['language_name'] }})
@endforeach
{!! Form::file('news_image', array('id'=>'news_image')) !!}
{!! Form::hidden('oldImage', $result['news'][0]->news_image , array('id'=>'oldImage')) !!} {{ trans('labels.UploadImageforNews') }}
{{ trans('labels.IsFeatureText') }}
Active status will be displayed on user side.
{!! Form::close() !!}
@endsection