@extends('layout.app') @section('content')

{{ isset($socialchannel) ? 'Editar canales social' : 'Crear canales social' }}

@csrf @if (isset($socialchannel)) @method('PUT') @endif @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('social_network_id')) {{ $errors->first('social_network_id') }} @endif
@if ($errors->has('profile_id')) {{ $errors->first('profile_id') }} @endif
@if ($errors->has('access_token')) {{ $errors->first('access_token') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection