@extends('app') @section('content')
@if(Session::has('msg'))
{{Session::get('msg')}}
@elseif(Session::has('error'))
{{Session::get('error')}}
@endif
@if($page=="list") @include('admin.products.list') @elseif($page=="create") @include('admin.products.create') @elseif($page=="update") @include('admin.products.update') @endif
@stop @section('script') @include('admin.custom-editor') @stop @section('style') @stop