@extends('admin/layouts/default') {{-- Page title --}} @section('title') @lang('news/title.add-news') :: @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

@lang('news/title.add-news')

{!! Form::open(['url' => URL::to('admin/news'), 'method' => 'post', 'class' => 'bf', 'files'=> true]) !!}
{!! Form::text('title', null, ['class' => 'form-control input-lg','placeholder'=> trans('blog/form.ph-title')]) !!} {{ $errors->first('title', ':message') }}
{!! Form::textarea('content', NULL, ['placeholder'=>trans('blog/form.ph-content'),'rows'=>'5','class'=>'textarea form-control','style'=>'style="width: 100%; height: 200px !important; font-size: 14px; line-height: 18px; border: 1px solid #dddddd; padding: 10px;"']) !!} {{ $errors->first('content', ':message') }}
{!! Form::select('category',['popular'=>'popular','hotnews'=>'Hot News','world'=>'Wolrd News','lifestyle'=>'Life Style','business'=>'Business','sports'=>'Sports'], null, ['class' => 'form-control select2', 'id'=>'blog_category' ,'placeholder'=>trans('blog/form.select-category')]) !!} {{ $errors->first('category', ':message') }}
...
Select image Change Remove
{{ $errors->first('image', ':message') }}
@lang('blog/form.discard')
{!! Form::close() !!}
@stop {{-- page level scripts --}} @section('footer_scripts') @stop