@extends('layouts.admin') @section('title') Create Advertisment @endsection @section('page_title') Create New Advertisment @endsection @section('content') @push('page_style') @endpush
@if ($errors->any()) @foreach ($errors->all() as $error)
{{$error}}
@endforeach @endif
@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('expire_at')) {{ $errors->first('expire_at') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('payment_method')) {{ $errors->first('payment_method') }} @endif

@if ($errors->has('country_ids')) {{ $errors->first('country_ids') }} @endif
@if ($errors->has('state_ids')) {{ $errors->first('state_ids') }} @endif
@if ($errors->has('cities_ids')) {{ $errors->first('cities_ids') }} @endif
@push('page_script') @endpush @endsection