@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').'.files.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('offer_form', 'Offer Form', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::file('offer_form') !!}
{!! Form::label('artwork', 'Artwork', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::file('artwork') !!}
{!! Form::submit( trans('quickadmin::templates.templates-view_create-create') , array('class' => 'btn btn-primary')) !!}
{!! Form::close() !!} @endsection