@extends('back.layouts.layout') @section('title','Add Content') @section('content-header')

Add Content

@endsection @section('content')
@csrf @method('post')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('content_type')){{ $errors->first('content_type') }} @endif
@if ($errors->has('text')){{ $errors->first('text') }}@endif
@if ($errors->has('link')){{ $errors->first('link') }}@endif
@if ($errors->has('btn_text')){{ $errors->first('btn_text') }}@endif
Image
@if ($errors->has('image')){{ $errors->first('image') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection