@extends('layouts.app') @section('title', 'Edit Loyalty') @section('content')

Edit Loyalty

{!! Form::open(['url' => action('LoyaltyController@update', [$loyalty->id]), 'method' => 'PUT', 'id' => 'update_loyalty']) !!}
{!! Form::label('status', 'Loyalty Status' . ':*') !!} status == 1 ? ' checked' : '') }}>
{!! Form::label('type', __('Type') . ':*' ) !!}
{!! Form::select('type', ['fixed' => __('lang_v1.fixed'), 'percentage' => __('lang_v1.percentage')], $loyalty->type , ['class' => 'form-control','placeholder' => __('messages.please_select')]); !!}
{!! Form::label('amount', 'Amount' . ':*') !!} {!! Form::number('amount', $loyalty->amount, ['class' => 'form-control', 'placeholder' => 'Amount']) !!}
{!! Form::label('points', ' Points' . ':*') !!} {!! Form::number('points', $loyalty->points, ['class' => 'form-control', 'required', 'placeholder' => 'Loyalty Points']) !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection