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

Add New News

{!! Form::open(array('route' => 'news.store', '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')) !!}
{{Form::label('image1', 'Image1', ['class' => 'control-label'])}} {{Form::file('image1', ['accept'=>"image/*"])}}
{!! 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('Add New!!', array('class'=>'btn btn-primary')) !!}
{!! Form::close() !!}
@endsection