@extends("admin.admin_app") @section("content")
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif @if(Session::has('error_flash_message'))
{{ Session::get('error_flash_message') }}
@endif {!! Form::open(array('url' => 'admin/verify_purchase_app','class'=>'form-horizontal','name'=>'profile_form','id'=>'profile_form','role'=>'form','enctype' => 'multipart/form-data')) !!}
If you don't know click here
{!! Form::close() !!}
Note: Use app purchase code only, not work with script purchase code.
@include("admin.copyright")
@endsection