diff --git a/project/resources/views/frontend/sections/faq.blade.php b/project/resources/views/frontend/sections/faq.blade.php new file mode 100644 index 0000000..29915ab --- /dev/null +++ b/project/resources/views/frontend/sections/faq.blade.php @@ -0,0 +1,43 @@ +
+
+
+
+
+
@lang(@$section->content->title)
+

@lang(@$section->content->heading)

+

+ @lang(@$section->content->sub_heading) +

+ + @lang(@$section->content->btn_name) + + + + +
+
+
+ @if(!empty($section->sub_content)) +
+ @foreach($section->sub_content as $key => $item) + @if ($key < 5) +
+
+
+ {{__(@$item->question)}} +
+ +
+
+ {{__(@$item->answer)}} +
+
+ @endif + @endforeach + +
+ @endif +
+
+
+
\ No newline at end of file diff --git a/project/resources/views/frontend/sections/how.blade.php b/project/resources/views/frontend/sections/how.blade.php new file mode 100644 index 0000000..e556203 --- /dev/null +++ b/project/resources/views/frontend/sections/how.blade.php @@ -0,0 +1,28 @@ +
+
+
+
@lang(@$section->content->title)
+

@lang(@$section->content->heading)

+

+ @lang(@$section->content->sub_heading) +

+
+ @if (!empty($section->sub_content)) +
+ @foreach (@$section->sub_content as $item) +
+
+ +
+
+
@lang(@$item->title)
+

+ @lang(@$item->details) +

+
+
+ @endforeach +
+ @endif +
+
\ No newline at end of file diff --git a/project/resources/views/user/auth/forgot_password.blade.php b/project/resources/views/user/auth/forgot_password.blade.php new file mode 100644 index 0000000..bd507bd --- /dev/null +++ b/project/resources/views/user/auth/forgot_password.blade.php @@ -0,0 +1,54 @@ +@extends('layouts.auth') + +@section('title') + @langg('Reset Password') +@endsection + +@php +$login = App\Models\SiteContent::where('slug','login')->first(); +@endphp + +@section('content') + +
+
+
+
+
+ + + +
+
+

@langg('Forgot Password')

+

+ @langg('Enter your Email address we have on file and a Verification code will be sent.') +

+
+
+ @csrf +
+ + +
+
+ +
+ +
+
+
+
+ images +
+
+

@langg('Forgot Password ?')

+

+ @langg('Put your email which you have used to register your account.') +

+
+
+
+
+
+@endsection