{!! Form::label('title', 'Title', ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('title', null, ['class' => 'form-control' ,'placeholder' => 'Insert News Title']) !!}
{!! Form::label('description', 'News Details ', ['class' => 'col-3 control-label text-right'] ) !!}
{!! Form::textarea('description', null, ['class' => 'form-group' ,'placeholder' => 'Place some text here' ]) !!}
{!! Form::label('Image ', null, ['class' => 'col-3 control-label text-right'] ) !!}
from Medias
*For Best Presentation use featured Images size 600*300.
@prepend('scripts') @endprepend
{!! Form::label('category_id', 'Category Name' ,['class' => 'col-3 control-label text-right']) !!}
{{ Form::select('category_id', $categories, null ,['class' => 'form-control','required' => true,]) }}
{!! Form::label('is_featured', 'Headlines?' ,['class' => 'col-3 control-label text-right']) !!}
{!! Form::label('is_active', 'Status?' ,['class' => 'col-3 control-label text-right']) !!}

cancel