@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} {{ ($edit)?'Edit':'Add' }} Auction @endsection @section('content')

{{ ($edit)?'Edit':'Add' }} Auction - {{$country->country_name}} {{ isset($city->city_name)?'- '.$city->city_name:0}}

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
@csrf
@if ($errors->has('spot')) {{ $errors->first('spot') }} @endif
@if ($errors->has('display_duration')) {{ $errors->first('display_duration') }} @endif
@if ($errors->has('auction_start_price')) {{ $errors->first('auction_start_price') }} @endif
@if ($errors->has('bid_price_addition')) {{ $errors->first('bid_price_addition') }} @endif
@if ($errors->has('bid_startdate')) {{ $errors->first('bid_startdate') }} @endif
@if ($errors->has('bid_enddate')) {{ $errors->first('bid_enddate') }} @endif
@endsection @section('custom_js') @endsection