@extends('layout.app') @section('content') Canal RSS {{ isset($feedchannel) ? 'Editar' : 'Crear' }} @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if(session('success')) {{ session('success') }} @endif @if(session('error')) {{ session('error') }} @endif @csrf @if(isset($feedchannel)) @method('PUT') @endif Nombre CategorÃa URL del canal Canales sociales @foreach($socialChannels as $channel) socialChannels->contains($channel->social_channel_id) ? 'selected' : '' }} {{ !isset($feedchannel) && is_array(old('social_channels')) && in_array($channel->id, old('social_channels')) ? 'selected' : '' }}> {{ $channel->social_network_name }} - {{ $channel->name }} @endforeach Seleccione los canales sociales donde desea publicar Configuración {{ isset($feedchannel) ? $feedchannel->settings : old('settings') }} @endsection @push('scripts') @endpush