@extends('layouts.admin') @section('style') {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} @endSection @section('script') {{-- --}} {{-- --}} {{-- --}} {{-- --}}{{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} @endSection @section('content') @php $page_title = isset($campaign) ? __('heading.title_edit_campaign').' '.$campaign['name'].'':__('heading.title_create_campaign'); @endphp
@csrf

Details

@if ($errors->has('data-error'))
{{ $errors->first('data-error') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{--
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
--}}
@if ($errors->has('campaign_type')) {{ $errors->first('campaign_type') }} @endif
@if ($errors->has('campaign_start_date')) {{ $errors->first('campaign_start_date') }} @endif
@if ($errors->has('campaign_end_date')) {{ $errors->first('campaign_end_date') }} @endif
@if ($errors->has('registration_start_date')) {{ $errors->first('registration_start_date') }} @endif
@if ($errors->has('registration_end_date')) {{ $errors->first('registration_end_date') }} @endif
@if ($errors->has('promo_icon')) {{ $errors->first('promo_icon') }} @endif
preview
@if ($errors->has('tnc')) {{ $errors->first('tnc') }} @endif
@if ($errors->has('campaign_banner')) {{ $errors->first('campaign_banner') }} @endif
preview
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection