@extends('dashboard.layout.default') @section('page_title',$page_title) @section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{__('pages.show_or_hide')}}

@csrf @method('patch')
@foreach($destinations as $destination) @endforeach
@endsection @push('js_scripts') @endpush