@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').'.confirmations.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('confirmation_location', 'Confirmation Location', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('confirmation_location', old('confirmation_location'), array('class'=>'form-control')) !!}
{!! Form::label('confirmation_filename', 'Confirmation File Name', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('confirmation_filename', old('confirmation_filename'), array('class'=>'form-control')) !!}
{!! Form::label('confirmation_from', 'Confirmation From', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('confirmation_from', old('confirmation_from'), array('class'=>'form-control')) !!}
{!! Form::label('confirmation_dropbox', 'Confirmation Dropbox', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('confirmation_dropbox', old('confirmation_dropbox'), array('class'=>'form-control')) !!}
{!! Form::submit( trans('quickadmin::templates.templates-view_create-create') , array('class' => 'btn btn-primary')) !!}
{!! Form::close() !!} @endsection