@extends('layouts.app') @section('title', 'Order Remote Service') @section('main')
@if (session('error'))

{{ session('error') }}

@endif @if (session('success'))

{{ session('success') }}

@endif

{{ $remotes->service_name }}

Professional Remote service solution

Service Price

{{ $currency->icon }}{{ number_format($remotes->final_price * $currency->rate, 2) }}

Delivery Time

{{ $remotes->time }}

@csrf @foreach ($remotes->inputs as $input)
required === 'on' ? 'required' : '' }} >
@error($input->field_name)
{{ $message }}
@enderror @endforeach

Service Information

Simply fill in the details and proceed to pay for your orders using your credit balance. You currently have {{ $currency->icon }}{{ number_format($remotes->final_price * $currency->rate, 2) }} of credits in your wallet.

{!! $remotes->description !!}
@endsection @push('script') @endpush