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

{{ isset($socialnetwork) ? 'Edit Social Network' : 'Create Social Network' }}

@csrf @if(isset($socialnetwork)) @method('PUT') @endif
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('type')) {{ $errors->first('type') }} @endif
@if($errors->has('access_token')) {{ $errors->first('access_token') }} @endif
@if($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection