@extends('admin.app') @section('page_title','Edit News') @section('page_location') @endsection @section('main-content')

Edit News

{{ Form::model($news,['route' => ['news.update' , $news->id ],'method' => 'PUT','class' => 'form' ,'id' =>'createroomsform','files' => true] ) }}
{!! Form::label('Title') !!} {!! Form::text('title', null, array('required', 'class'=>'form-control', 'placeholder'=>'Title')) !!}
{!! Form::label('Slug') !!} {!! Form::text('slug', null, array('required', 'class'=>'form-control', 'placeholder'=>'Slug')) !!}
{!! Form::label('Reference link') !!} {!! Form::text('link', null, array( 'class'=>'form-control', 'placeholder'=>'Reference link')) !!}
{!! Form::label('Description1') !!} {!! Form::textarea('description1', null, array('class'=>'form-control', 'placeholder'=>'Description1','class' => 'ckeditor')) !!}
@php $photos =array(); if( !empty($course->image1)) { $photos = unserialize( $course->image1); if(count($photos)>0) { $img_path=url('/news/'.$photos['image1']); echo ''; } } @endphp
{!! Form::label('Meta Title') !!} {!! Form::text('meta_title', null, array( 'class'=>'form-control', 'placeholder'=>'Meta Title')) !!}
{!! Form::label('Meta Tags') !!} {!! Form::text('meta_tags', null, array( 'class'=>'form-control', 'placeholder'=>'Meta Tags')) !!}
{!! Form::label('Meta Details') !!} {!! Form::text('meta_details', null, array( 'class'=>'form-control', 'placeholder'=>'Meta Details')) !!}
{!! Form::submit('Update!!', array('class'=>'btn btn-primary')) !!}
{!! Form::close() !!}
@endsection