@extends('frontend.layouts.app') @section('title', 'Volunteer') @php use App\Helpers\Helper; @endphp @section('content') {{-- Hero Section --}} @include('frontend.partials.hero', [ 'mainHeading' => __('pages.volunteer'), 'subHeading' => __('pages.volunteer_description'), 'breadcrumb1' => [ 'name' => __('route.home'), 'route' => route('home'), ], 'breadcrumb2' => [ 'name' => __('route.volunteer'), 'route' => route('volunteer-page.show'), 'class' => 'text-gray-400', ], 'breadcrumb3' => null, 'breadcrumb4' => null, ])

{{ __('homepage.register_yourself_with_us') }}

{!! __('homepage.become_a_volunteer') !!}

@php $images = $volunteer->images ? json_decode($volunteer->images) : []; @endphp
@foreach ($images as $image) Register Image @endforeach
{!! Helper::stripInlineStyle( app()->getLocale() == 'en' ? $volunteer->description_en ?? '' : $volunteer->description_np ?? ($volunteer->description_en ?? ''), ) !!}
Volunteer Hands

{!! __('homepage.what_we_look_in_volunteers') !!}

{!! Helper::stripInlineStyle( app()->getLocale() == 'en' ? $volunteer->qualification_en ?? '' : $volunteer->qualification_np ?? ($volunteer->qualification_en ?? ''), ) !!}

{{ __('pages.volunteer_form') }}

@csrf
{{ __('pages.emergency_detail') }}

@error('aggrement')

{{ $message }}

@enderror
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @error('g-recaptcha-response')

{{ $message }}

@enderror

@endsection @push('scripts') @endpush