@extends('backend.index') @section('content')
@csrf
{{ ucwords($order->payment) }}
{{ ucwords($order->service->title) }}
In USD, numeric only
{!! makeDropDown( array("0" => "Failed", "1" => "Success"), "payment_status", isset($order) ? $order->payment_status : old('payment_status') ) !!}
{!! makeRolesDropDown('role', $order->user->group->role_id, 'required') !!}
Send user back to default group (the one new users will be placed after the registration) after this time.
@endsection