@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('route' => config('quickadmin.route').'.uploadedfiles.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('artwork_location', 'Artwork Location', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('artwork_location', old('artwork_location'), array('class'=>'form-control')) !!}
{!! Form::submit( trans('quickadmin::templates.templates-view_create-create') , array('class' => 'btn btn-primary')) !!}
{!! Form::close() !!} @endsection