@extends('user.layout') @section('pagename') - {{ __('Service Form') }} @endsection @section('content') @php $value = $user->email; $isEmail = filter_var($value, FILTER_VALIDATE_EMAIL); $isPhone = preg_match('/^\+?[0-9]{6,20}$/', $value); // basic phone check @endphp
@if (session('success'))
{{ session('success') }}
@endif

{{ $service->service_name }}

Hi, {{ $user->username }} This is your serial number, {{ $user->user_sl }} pls remember this / এটা আপনার আইডি, দয়া করে মনে রাখবেন।

@csrf

Service Review / সেবা প্রার্থীর মতামত

@if ($errors->has('review_type')) {{ $errors->first('review_type') }} @endif
@if ($errors->has('comment')) {{ $errors->first('comment') }} @endif
@endsection @section('scripts') @endsection