@extends('admin.layout') @section('content')

{{ translate('Add order') }}

{!! Form::open(['method' => 'post', 'action' => 'Admin\OrderController@storeDigital', 'files' => true, 'class' => 'validation-wizard-add wizard-circle']) !!}
{{ translate('Client Information') }}
{!! Form::select('user_id', $clients, null, ['required' => 'required', 'style' => 'width:100%', 'id' => 'user_id', 'class' => 'form-control select2', 'data-placeholder' => translate('Client')]) !!}
{!! Form::text('firstname', null, ['required' => 'required', 'class' => 'form-control', 'placeholder' => translate('Title')]) !!}
{!! Form::text('lastname', null, ['required' => 'required', 'class' => 'form-control', 'placeholder' => translate('Last Name')]) !!}
{!! Form::text('email', null, ['required' => 'required', 'class' => 'form-control', 'placeholder' => translate('Email')]) !!}
{!! Form::text('telephone', null, ['class' => 'form-control', 'placeholder' => translate('Phone')]) !!}
{!! Form::checkbox('gift_product', null, 0, ['id' => 'Checkbox_1']) !!}
{{ translate('Choose product') }}
{{ translate('Add product') }}

{{ translate('Title') }} {{ translate('photo') }} {{ translate('price') }} {{ translate('Quantity') }} {{ translate('Total rice') }} {{ translate('Options') }}
{{ translate('Order confirmation data') }}
{{ translate('Title') }} {{ translate('price') }} {{ translate('Quantity') }} {{ translate('Total rice') }}
{!! Form::text('coupon_id', null, ['id' => 'coupon_id', 'class' => 'form-control', 'placeholder' => translate('Coupon')]) !!}
{!! Form::textarea('notes', null, ['class' => 'form-control', 'placeholder' => translate('Notes')]) !!}
{!! Form::Close() !!}
@endsection @section('script') @endsection