@extends('admin.layouts.master') @section('content')

{{ trans('quickadmin::templates.templates-view_create-add_new') }}

@if ($errors->any())
    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif
{!! Form::open(array('files' => true, 'route' => config('quickadmin.route').'.proof.store', 'id' => 'form-with-validation', 'class' => 'form-horizontal')) !!}
{!! Form::label('order_id', 'Order ID', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('order_id', old('order_id'), array('class'=>'form-control')) !!}
{!! Form::label('item_no', 'Item Number', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('item_no', old('item_no'), array('class'=>'form-control')) !!}
{!! Form::label('artwork_proof', 'Proof', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::file('artwork_proof') !!} {!! Form::hidden('artwork_proof_w', 4096) !!} {!! Form::hidden('artwork_proof_h', 4096) !!}
{!! Form::label('approved', 'Approved?', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::select('approved', $approved, old('approved'), array('class'=>'form-control')) !!}
{!! Form::submit( trans('quickadmin::templates.templates-view_create-create') , array('class' => 'btn btn-primary')) !!}
{!! Form::close() !!} @endsection