@extends('layouts.campaign') @section('title', 'Edit List') @section('new_button') Create List remove_red_eye View List @endsection @section('content')
{!! Form::model($campaignList, ['url'=>['/campaign_lists', $campaignList->id], 'method'=>'PUT', 'style'=>'width: 100% !important;']) !!}
{!! Form::textGroup('title', 'List Name', NULL, ['required'=>'required']) !!}
{!! Form::textGroup('from_name', 'Default From Name', NULL, ['required'=>'required']) !!}
{!! Form::textGroup('from_email', 'Default From Email', NULL, ['required'=>'required']) !!}
{!! Form::textGroup('phone', 'Default Phone', NULL, ['onkeydown'=>'return isNumberKey(event)', 'maxlength'=>'12']) !!}
{!! Form::textGroup('company', 'Company / Organization', NULL, []) !!}
{!! Form::textGroup('city', 'City', NULL, []) !!}
{!! Form::textGroup('zipcode', 'Zip / Postal Code', NULL, []) !!}
{!! Form::textareaGroup('address', 'Address', NULL, ['class'=>'form-control', 'rows'=>'3']) !!}
{!! Form::submit('UPDATE', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection