@extends('layouts.master') @section('page_title', $page_title) @section('content')
{{ Form::page_header($page_title, "sourcedata") }} {{ Form::open(['url' => $post_url]) }}
{{ Form::row_text_inline('name', 'Marketing Service', $marketing_service->name, 2, 4) }}
{{ Form::label_ex('Setup Cost', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 2) }} {{ Form::number_ex('setup_cost', $marketing_service->setup_cost, 2) }}
{{ Form::label_ex('Monthly Cost', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 2) }} {{ Form::number_ex('monthly_cost', $marketing_service->monthly_cost, 2) }}
{{ Form::hidden("active", 0) }} {{ Form::row_checkbox_inline('active', 'Active', $marketing_service->active, 2, 4) }} {{ Form::button_save() }} {{ Form::button_link('Cancel', action('SuperAdminSourceDataController@marketing_services'), 'cancel_btn') }}
@endsection