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