@extends('admin.layouts.master') @section('page_title', __('admin.Add :name' , ['name' => __('admin.News')])) @section('page_heading', __('admin.Add :name' , ['name' => __('admin.News')])) @section('page_text', __('admin.Add :name' , ['name' => __('admin.News')])) @section('page_breadcrumb_icon') @endsection @section('page_breadcrumb_item', 'News') @section('page_breadcrumb_item2', 'Add News') @section('css') @endsection @section('content')
{!! Form::open(array('novalidate'=>'novalidate','id' => 'signupForm', 'route' => 'news.store','method'=>'POST','enctype'=>'multipart/form-data')) !!}
{!! Form::select('type',[0 => 'Latest News', 1 => 'Dates For Your Diary'],[], array('class' => 'form-select','data-control'=>"select2")) !!}
{!! Form::text('heading', null, array('required'=>'required','placeholder' => 'Enter Heading','class' => 'form-control')) !!}
{!! Form::textarea('short_summary', null, array('required'=>'required','placeholder' => 'Short Summary','class' => 'form-control')) !!}
{!! Form::textarea('main_text', null, array('required'=>'required','placeholder' => 'Main Text','class' => 'form-control')) !!}
{!! Form::file('image', null, array('required'=>'required','class' => 'form-control')) !!}

Do you want this post to be seen on the “Important Information” page?

Do you want this post to be added to the home page “What’s New” panel?

@lang('admin.Cancel')
{!! Form::close() !!}
@endsection @section('js') @endsection