@extends('layouts.superadmin') @section('content')

Topics

Edit Topic
@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($topic, ['method' => 'PATCH','url' => route('portal.topics.update', $topic), 'files' => true]) !!} @include('admin.topic.partials.form', ['topic' => $topic])
{!! Form::close() !!}
@endsection