@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New payment @parent @stop {{-- Page content --}} @section('content')

Payments

Create a new payment

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/payments']) !!}
{!! Form::label('seller_id', 'Seller: ') !!} {!! Form::select('seller_id', $seller, null, ['class' => 'form-control']) !!}
{!! Form::label('date', 'Date: ') !!} {!! Form::date('date', null, ['class' => 'form-control']) !!}
{!! Form::label('offer_id', 'Offer: ') !!} {!! Form::select('offer_id', $offer, null, ['class' => 'form-control']) !!}
{!! Form::label('details', 'Details: ') !!} {!! Form::textarea('details', null, ['class' => 'form-control', 'rows' => 3]) !!}
{!! Form::label('message', 'Message: ') !!} {!! Form::textarea('message', null, ['class' => 'form-control', 'rows' => 3]) !!}
{!! Form::label('amount', 'Amount: ') !!} {!! Form::text('amount', null, ['class' => 'form-control']) !!}
{!! Form::label('status_code', 'Status Code: ') !!} {!! Form::select('status_code', $status, null, ['class' => 'form-control']) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop