@extends('adminlte::page') @section('css') @stop @section('content') @include('layouts.message') Create Purchase Package {!! Form::open(['action' => ['PurchasePackageController@store'], 'method' => 'POST', 'enctype' => 'multipart/form-data', 'class' => 'form-horizontal']) !!} {!! Form::token() !!} {!! Form::label('name', 'Name', ['class' => 'col-sm-2 control-label']) !!} {!! Form::label('type', 'Type', ['class' => 'col-sm-2 control-label']) !!} @foreach(config("constants.purchase_package_type") as $key => $type) {{$type}} @endforeach {!! Form::label('image', 'Image', ['class' => 'col-sm-2 control-label']) !!} {!! Form::label('reward', 'Rewards ', ['class' => 'col-sm-2 control-label']) !!} [Add] {!! Form::close() !!} @stop @push('js') @endpush