diff --git a/resources/lang/en/Public_ViewEvent.php b/resources/lang/en/Public_ViewEvent.php
index 6c73b241..dccc474d 100644
--- a/resources/lang/en/Public_ViewEvent.php
+++ b/resources/lang/en/Public_ViewEvent.php
@@ -66,6 +66,7 @@ return [
'ticket' => 'Ticket',
'ticket_holder_information' => 'Ticket Holder Information',
'ticket_holder_n' => 'Ticket Holder :n Details',
+ 'seat_holder_n' => ':ticket :seat_no ticket holder Details',
'ticket_price' => 'Ticket Price',
'tickets' => 'Ticket(s)',
'tickets_are_currently_unavailable' => 'Tickets are currently unavailable',
diff --git a/resources/lang/ru/Public_ViewEvent.php b/resources/lang/ru/Public_ViewEvent.php
index 05402a70..c81d5f66 100644
--- a/resources/lang/ru/Public_ViewEvent.php
+++ b/resources/lang/ru/Public_ViewEvent.php
@@ -66,6 +66,7 @@ return [
'ticket' => 'билет',
'ticket_holder_information' => 'Информация о владельце билета',
'ticket_holder_n' => 'Информация о владельце билета :n ',
+ 'seat_holder_n' => 'Информация о владельце билета :ticket :seat_no',
'ticket_price' => 'Цена билета',
'tickets' => 'Билет (ы)',
'tickets_are_currently_unavailable' => 'Билеты в настоящее время недоступны',
diff --git a/resources/lang/tk/Public_ViewEvent.php b/resources/lang/tk/Public_ViewEvent.php
index ea970a8c..aaf5f1c5 100644
--- a/resources/lang/tk/Public_ViewEvent.php
+++ b/resources/lang/tk/Public_ViewEvent.php
@@ -66,6 +66,7 @@ return [
'ticket' => 'Bilet',
'ticket_holder_information' => 'Bilediň eýesi barada maglumat',
'ticket_holder_n' => 'Bilediň eýesi barada :n maglumatlar',
+ 'seat_holder_n' => ':ticket :seat_no bilediň eýesi barada maglumat',
'ticket_price' => 'Bilediň bahasy',
'tickets' => 'Bilet(ler)',
'tickets_are_currently_unavailable' => 'Biletler şu wagt elýeterli däl',
diff --git a/resources/views/desktop/Partials/CreateOrderSection.blade.php b/resources/views/desktop/Partials/CreateOrderSection.blade.php
index 19587491..1a5a18be 100644
--- a/resources/views/desktop/Partials/CreateOrderSection.blade.php
+++ b/resources/views/desktop/Partials/CreateOrderSection.blade.php
@@ -5,6 +5,60 @@
+
+
+
+
+
+
+ @lang("Public_ViewEvent.order_summary")
+
+
+
+
+ |
+ @lang('Public_ViewEvent.booking_fees') |
+ @lang('Public_ViewEvent.price') |
+
+
+ @foreach($tickets as $ticket)
+
+ | {{{$ticket['ticket']['title']}}} X {{$ticket['qty']}} |
+ {{money($ticket['total_booking_fee'], $event->currency)}} |
+
+ @if((int)ceil($ticket['original_price']) === 0)
+ @lang("Public_ViewEvent.free")
+ @else
+ {{ money($ticket['original_price'], $event->currency) }}
+ @endif
+ |
+
+ @endforeach
+
+
+ @if($order_total > 0)
+
+ @endif
+
+
+
+ {!! @trans("Public_ViewEvent.time", ["time"=>""]) !!}
+
+
-
-
-
-
-
- @lang("Public_ViewEvent.order_summary")
-
-
-
-
- |
- @lang('Public_ViewEvent.booking_fees') |
- @lang('Public_ViewEvent.price') |
-
-
- @foreach($tickets as $ticket)
-
- | {{{$ticket['ticket']['title']}}} X {{$ticket['qty']}} |
- {{money($ticket['total_booking_fee'], $event->currency)}} |
-
- @if((int)ceil($ticket['original_price']) === 0)
- @lang("Public_ViewEvent.free")
- @else
- {{ money($ticket['original_price'], $event->currency) }}
- @endif
- |
-
- @endforeach
-
-
- @if($order_total > 0)
-
- @endif
-
-
-
- {!! @trans("Public_ViewEvent.time", ["time"=>""]) !!}
-
-
diff --git a/resources/views/mobile/Pages/CheckoutPage.blade.php b/resources/views/mobile/Pages/CheckoutPage.blade.php
index a8458ed7..21b4d656 100644
--- a/resources/views/mobile/Pages/CheckoutPage.blade.php
+++ b/resources/views/mobile/Pages/CheckoutPage.blade.php
@@ -2,7 +2,7 @@
@section('content')
@include('desktop.Partials.HeaderSection')
- @include('desktop.Partials.CreateOrderSection')
+ @include('mobile.Partials.CreateOrderSection')
@include('desktop.Partials.FooterSection')
@endsection
diff --git a/resources/views/mobile/Partials/CreateOrderSection.blade.php b/resources/views/mobile/Partials/CreateOrderSection.blade.php
new file mode 100644
index 00000000..bfa36ca7
--- /dev/null
+++ b/resources/views/mobile/Partials/CreateOrderSection.blade.php
@@ -0,0 +1,239 @@
+