@extends('layouts.template') @section('content')
@if(session('msg_success')) @endif @if(session('msg_update')) @endif @if(session('msg_delete')) @endif
{{ Form::open(['url' => 'saveaspck', 'class' => 'form-horizontal', 'method' => 'post', 'files'=>true]) }}
{{ Form::label('member', 'Select Member *', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::label('package', 'Select Package', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::label('fullname', 'Default Price', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::text('packg_price', '', array('class' =>'form-control packageprice',)) }}
{{ Form::label('cellphone', 'Discount(Flat)', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::text('discount', '', array('class' =>'form-control discount', 'placeholder'=>'Discount')) }}
{{ Form::label('cellphone', 'Aggrement Price', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::text('contact_price', '', array('class' =>'form-control cont_price', 'placeholder'=>'Total Payble')) }}
{{ Form::label('dob', 'Date Range', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::label('dob', 'Schedule Time', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::label('status', 'Status', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::select('status', array( '1' => 'Active', '0' => 'Inactive',),null, ['class' => 'form-control']) }}
{{ Form::label('remarks', 'Remarks', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::textarea('remarks', '', array('class' =>'form-control ')) }}
Close {{ Form::submit('Save', array('class' => 'btn btn-success btn-sm')) }}
{{ Form::close() }}

@stop