@extends("admin/layouts.master") @section('title','Edit Advertise') @section('stylesheet') @endsection @section('body')
@if($ad->ad_location == "onpause" || $ad->ad_location=="popup")

Edit AD: {{ $ad->id }} | Location: {{ $ad->ad_location }}

{{ csrf_field() }} {{ method_field('PUT') }}
{{ $errors->first('ad_image') }}



@elseif($ad->ad_location == "skip")

Edit AD: {{ $ad->id }} | Location: {{ $ad->ad_location }}

{{ csrf_field() }} {{ method_field('PUT') }}
@if($ad->ad_video !="no")
{{ $errors->first('ad_video') }}


@else
@endif


@endif
@endsection