@extends('layouts.auth') @section('title') {{ __('messages.paytm') }} @endsection @section('content')
@include('flash::message') @include('layouts.errors')

{{ __('messages.payment_detail') }}

{!! csrf_field() !!}

{{ __('messages.payment_for_booking_appointment_with_doctor') }} : {{$doctor->user->full_name}} at {{\Carbon\Carbon::parse($appointment->date)->format('d/m/Y')}} {{$appointment->from_time}} {{$appointment->from_time_type}} to {{$appointment->to_time}} {{$appointment->to_time_type}}
@if ($errors->any())
{{$errors->first()}}
@endif @if(session('success_msg'))
{{ session('success_msg') }}
@endif @if(session('error_msg'))
{{ session('error_msg') }}
@endif
{{ __('messages.appointment.payment') }} : {{$appointment->payable_amount}} Rs/-
@endsection