@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.sandbox.title_singular') }}
@method('POST') @csrf
@if($errors->has('payment_channel'))
{{ $errors->first('payment_channel') }}
@endif {{ trans('cruds.sandbox.fields.payment_channel_helper') }}
@if($errors->has('merchant'))
{{ $errors->first('merchant') }}
@endif {{ trans('cruds.sandbox.fields.merchant_helper') }}
@if($errors->has('merchant_trxid'))
{{ $errors->first('merchant_trxid') }}
@endif {{ trans('cruds.sandbox.fields.merchant_trxid_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.sandbox.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.sandbox.fields.email_helper') }}
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif {{ trans('cruds.sandbox.fields.phone_helper') }}
@if($errors->has('items'))
{{ $errors->first('items') }}
@endif {{ trans('cruds.sandbox.fields.items_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.sandbox.fields.amount_helper') }}
@if($errors->has('request_datetime'))
{{ $errors->first('request_datetime') }}
@endif {{ trans('cruds.sandbox.fields.request_datetime_helper') }}
@if($errors->has('expire_datetime'))
{{ $errors->first('expire_datetime') }}
@endif {{ trans('cruds.sandbox.fields.expire_datetime_helper') }}
@endsection