@extends('layouts.master') @section('title') Create Campaign @endsection @section('css') @endsection @section('content') @component('common-components.breadcrumb') @slot('title')@endslot @endcomponent @if (Session::get('error'))
{{ Session::get('error') }}
@endif @if (Session::get('success'))
{{ Session::get('success') }}
@endif

Create New Campaign

@csrf
@if($errors->has('platform'))
{{ $errors->first('platform') }}
@endif
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('date_time'))
{{ $errors->first('date_time') }}
@endif
{{-- --}}
@if($errors->has('cover_photo'))
{{ $errors->first('cover_photo') }}
@endif

@if($errors->has('existing_posts'))
{{ $errors->first('existing_posts') }}
@endif
@if($errors->has('facebook_post_title'))
{{ $errors->first('facebook_post_title') }}
@endif
{{-- --}}
@if($errors->has('facebook_image_url'))
{{ $errors->first('facebook_image_url') }}
@endif
@if($errors->has('caption'))
{{ $errors->first('caption') }}
@endif
{{-- --}}
@if($errors->has('image_url'))
{{ $errors->first('image_url') }}
@endif
Word that triggers a donation in the comments.
Examples: "Donate","Give"
@if($errors->has('word_identifier'))
{{ $errors->first('word_identifier') }}
@endif
Back
@endsection @section('script') @endsection