@extends('admin.layouts.master') @section('title', 'Edit Advertise - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
@if($ad->ad_location == "onpause" || $ad->ad_location=="popup")
{{__('Edit AD')}}: {{ $ad->id }} | {{__('Location')}}: {{ $ad->ad_location }}
{{ csrf_field() }} {{ method_field('PUT') }}

{{__('Upload')}}
{{ $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")

{{__('Upload')}}
{{ $errors->first('ad_video') }}

@else
@endif
@endif
@endsection @section('script') @endsection