@extends('master') @section('breadcrumb') @stop @section('content')

Nuevo producto

{!! Form::open(['url' => '/shop/'.$shop->id.'/product/add', 'files' => true]) !!}
{!! Form::text('name', null) !!}
{!! Form::select('category_id', $shop->getCategoriesPluck(), null, ['class' => 'form-select']) !!}
{!! Form::textarea('content', null,['class' => 'form-control editor', 'data-editor' => 'true', 'id' => 'product_content']) !!}
{!! Form::number('price', 0.00, ['required', 'step' => 'any', 'min' => '1']) !!}
{!! Form::file('image', ['class' => 'product_img_prew', 'id' => 'product_img_prew_field']) !!} Tamaño: 728*364
{!! Form::number('discount', 0.00, ['min' => '0']) !!}
{!! Form::close() !!}

Previsualización

@endsection