@extends('admin.portal') @section('title', 'Create Article') @section('header_title', 'Create Article') @push('styles') @endpush @section('content')

← Back ← Back
@if ($errors->any())

Please fix the following errors:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @include('admin.articles._form', ['article' => null])
@endsection @push('scripts') @endpush