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

{{ $station->description }}

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