@extends('backend.index') @section('content') @if(isset($podcast))
{{ $podcast->title }}

{{ $podcast->description }}

@endif
@csrf
{!! makeCountryDropDown('country_code', 'form-control select2-active filter-country-select', isset($podcast) && ! old('country_code') ? $podcast->country_code : old('country_code')) !!}
@if(isset($podcast) && ($podcast->country_code || $podcast->language_id)) {!! makeCountryLanguageDropDown($podcast->country_code, 'language_id', 'form-control select2-active', isset($podcast) && ! old('language_id') ? $podcast->language_id : old('language_id')) !!} @endif
@endsection