@extends('layouts.master')
@section('page_title', $business_topic->exists ? "Edit Topic" : "Add Topic")
@section('content')
@if($business_topic->exists)
{{ Form::model($business_topic,['url' => action('BusinessTopicController@update',compact('business','business_topic'))]) }}
@else
{{ Form::open(['url' => action('BusinessTopicController@store',compact('business'))]) }}
@endif
{{ Form::page_header($business_topic->exists ? "Edit Topic" : "Add Topic", "paper_stack") }}
{{ Form::row_text_stacked('name','Name',$business_topic->name,12,\App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::separator_row('grey-divider thin-divider') }}
{{ Form::button_save() }}
{{ Form::button_cancel() }}
{{ Form::close() }}
@endsection
@section('page_style')
@endsection