@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Create New Blog Post') }}

@csrf
{{ __('Blog Title') }} ({{ __('Required') }})
@error('title')

{{ $errors->first('title') }}

@enderror
{{ __('Custom SEO URL') }} ({{ __('Optional') }})
@error('url')

{{ $errors->first('url') }}

@enderror
{{ __('Blog Status') }} ({{ __('Required') }})
{{ __('Blog Image') }} ({{ __('Required') }})
@error('image')

{{ $errors->first('image') }}

@enderror
{{ __('Blog Post Content') }} ({{ __('Required') }})
@error('content')

{{ $errors->first('content') }}

@enderror
{{ __('Cancel') }}
@endsection @section('js') @endsection