@extends("admin.layouts.app") @section("styles") @endsection @section("content")
New Campaign
@isset($errors) @foreach($errors as $key => $error) @endforeach @endisset
{{Form::open(['route'=>"admin.campaigns.store",'role'=>"form"])}}
{{Form::text("name",NULL,['class'=>'form-control m-input'])}} {{Form::label("name","Title")}}
{{Form::text("points",NULL,['class'=>'form-control m-input'])}} {{Form::label("points","How many points for 1 shekel")}}
{{Form::text("redeem_points",NULL,['class'=>'form-control m-input'])}} {{Form::label("redeem_points","How many shekels for 1 point (points*points_redeem) = total shekel")}}
{{Form::text("from",NULL,['class'=>"form-control"])}} to {{Form::text("to",NULL,['class'=>"form-control"])}}
{!! Form::close() !!}
@endsection @section("scripts") @endsection