@extends("admin.layouts.sellermastersoyuz") @section('title', __('Request Ad')) @section('body') @component('seller.components.breadcumb', ['secondactive' => 'active']) @slot('heading') {{ __('Request New Ad') }} @endslot @slot('menu1') {{ __('Ads') }} @endslot @endcomponent
{{ __('Submit a New Ad Request') }}

{{ __('Price per day') }}: INR {{ number_format($pricePerDay, 2) }}

@if($errors->any())
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif
@csrf
{{ __('Defaults to "Shop Now" if blank.') }}
{{ __('Total amount') }}: INR {{ number_format($pricePerDay * (int) old('ad_duration_days', 7), 2) }}
{{ __('Max 50MB. mp4/mov/webm') }}
@endsection