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

{{ trans('quickadmin::templates.templates-view_edit-edit') }}

@if ($errors->any())
    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif
{!! Form::model($uploadedfiles, array('class' => 'form-horizontal', 'id' => 'form-with-validation', 'method' => 'PATCH', 'route' => array(config('quickadmin.route').'.uploadedfiles.update', $uploadedfiles->id))) !!}
{!! Form::label('order_id', 'Order ID', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('order_id', old('order_id',$uploadedfiles->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',$uploadedfiles->artwork_location), array('class'=>'form-control')) !!}
{!! Form::submit(trans('quickadmin::templates.templates-view_edit-update'), array('class' => 'btn btn-primary')) !!} {!! link_to_route(config('quickadmin.route').'.uploadedfiles.index', trans('quickadmin::templates.templates-view_edit-cancel'), null, array('class' => 'btn btn-default')) !!}
{!! Form::close() !!} @endsection