@extends('adminlte::page') @section('title', __('clinic-orders.create.title')) @section('content_header')
@stop @section('content')
@if ($errors->has('message'))
{{ $errors->first('message') }}
@endif
@csrf

{!! __("clinic-orders.create.p") !!}

{!! __("clinic-orders.create.b_order") !!}


{!! __("clinic-orders.create.b_order_type") !!}
@if ($order_data['order_type'] === 'REPAIR_REQUEST') {!! __("clinic-orders.create.text_repair_request") !!} @endif
{!! __("clinic-orders.create.b_total_price") !!}
¥{{ number_format($order_data['total_price']) }}
@stop @section('css') @stop