@extends('layouts.superadmin') @section('content')

Articles

Add article
@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(array('route' => 'portal.articles.store','method'=>'POST','files' => true, 'id' => 'myForm')) !!} @include('admin.article.partials.form', ['article' => null])
{!! Form::close() !!}
@endsection