@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
{{ $title }}
@csrf
@if ($type == 'individual') @include('front.membership_new.from_fields.individual') @elseif($type == 'employee') @include('front.membership_new.from_fields.employee') @elseif($type == 'family') @include('front.membership_new.from_fields.family') @elseif($type == 'corporate') @include('front.membership_new.from_fields.corporate') @elseif($type == 'honorary' && auth()->user() && auth()->user()->is_admin) @include('front.membership_new.from_fields.honorary') @endif
@include('sweetalert::alert') @endsection @push('post_script') @endpush