@extends('admin.layouts.master') @section('title', 'Edit Advertise - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('Edit Advertise') }} @endslot @slot('menu1') {{ __('Player Settings') }} @endslot @slot('menu2') {{ __('Advertise') }} @endslot @slot('menu3') {{ __('Edit Advertise') }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@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('scripts') @endsection