@extends('layouts.master') @section('page_title', $page_title) @section('content')
{{ Form::page_header($page_title, "sourcedata") }} {{ Form::open(['url' => $post_url]) }}
{{ Form::hidden('business', $business->business) }} @if(!$business_marketing_service->marketing_service) {{ Form::row_select_inline('marketing_service', 'Marketing Service', $business_marketing_service->marketing_service, \App\Models\Marketing_Service::marketing_service_select(), 2, 4, \App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 'Select') }} @else {{ Form::row_label_inline('Marketing Service', $business_marketing_service->_marketing_service->name, '', 2, 4, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::hidden('marketing_service', $business_marketing_service->marketing_service) }} @endif
{{ Form::label_ex('Amount', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 2) }} {{ Form::number_ex('amount', $business_marketing_service->amount, 1) }}
@if($business_marketing_service->business_marketing_service) @endif {{ Form::row_textarea_inline('notes', 'Notes', $business_marketing_service->notes, 2, 10, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::button_save() }} {{ Form::button_link('Cancel', action('SuperAdminBusinessController@business_marketing_services', compact('business'))) }}
@endsection @section('page_script') @endsection