@extends('home') @section('content')
@include('layouts.partials.messages')

Add Business Ads

@csrf
@if ($errors->has('businessId')) {{ $errors->first('businessId') }} @endif
@if ($errors->has('adType')) {{ $errors->first('adType') }} @endif
@if ($errors->has('adTitle')) {{ $errors->first('adTitle') }} @endif
@if ($errors->has('adDescription')) {{ $errors->first('adDescription') }} @endif
@if ($errors->has('audianceStartAge')) {{ $errors->first('audianceStartAge') }} @endif
@if ($errors->has('audianceEndAge')) {{ $errors->first('audianceEndAge') }} @endif
@if ($errors->has('startDate')) {{ $errors->first('startDate') }} @endif
@if ($errors->has('endDate')) {{ $errors->first('endDate') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('adContent')) {{ $errors->first('adContent') }} @endif
@stop