@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').'.uploadedartwork.store', 'id' => 'form-with-validation', 'class' => 'form-horizontal')) !!}
{!! 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::label('artwork_ftp', 'Artwork FTP', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('artwork_ftp', old('artwork_ftp'), array('class'=>'form-control')) !!}
{!! Form::label('upload_successful', 'Upload Successful', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('upload_successful', old('upload_successful'), array('class'=>'form-control')) !!}
{!! Form::submit( trans('quickadmin::templates.templates-view_create-create') , array('class' => 'btn btn-primary')) !!}
{!! Form::close() !!} @endsection