@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New productview @parent @stop {{-- Page content --}} @section('content')

Productviews

Create a new productview

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/productviews']) !!}
{!! Form::label('product_id', 'Product: ') !!} {!! Form::select('product_id', $product, null, ['class' => 'form-control']) !!}
{!! Form::label('user_id', 'User: ') !!} {!! Form::select('user_id', $user, null, ['class' => 'form-control']) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop