@extends('layouts.master') @section('title') {{trans_choice('general.add',1)}} {{trans_choice('general.campaign',1)}} @endsection @section('content')

{{trans_choice('general.add',1)}} {{trans_choice('general.campaign',1)}}

{!! Form::open(array('url' => url('pledge/campaign/store'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('name',trans_choice('general.name',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name',null, array('class' => 'form-control', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('goal',trans_choice('general.goal',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('goal',null, array('class' => 'form-control touchspin', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('start_date',trans_choice('general.start',1).' '.trans_choice('general.date',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('start_date',date("Y-m-d"), array('class' => 'form-control date-picker', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('end_date',trans_choice('general.end',1).' '.trans_choice('general.date',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('end_date',null, array('class' => 'form-control date-picker', 'placeholder'=>"",''=>'')) !!}
{!! Form::label('notes',trans_choice('general.note',2),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::textarea('notes',null, array('class' => 'form-control', 'placeholder'=>"",'rows'=>'3')) !!}
{!! Form::close() !!}
@endsection