@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.posting.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.posting.fields.name_helper') }}
@if($errors->has('category'))
{{ $errors->first('category') }}
@endif {{ trans('cruds.posting.fields.category_helper') }}
@if($errors->has('subcategory'))
{{ $errors->first('subcategory') }}
@endif {{ trans('cruds.posting.fields.subcategory_helper') }}
@if($errors->has('posts'))
{{ $errors->first('posts') }}
@endif {{ trans('cruds.posting.fields.posts_helper') }}
@if($errors->has('district'))
{{ $errors->first('district') }}
@endif {{ trans('cruds.posting.fields.district_helper') }}
@if($errors->has('block'))
{{ $errors->first('block') }}
@endif {{ trans('cruds.posting.fields.block_helper') }}
@if($errors->has('panchayat'))
{{ $errors->first('panchayat') }}
@endif {{ trans('cruds.posting.fields.panchayat_helper') }}
@if($errors->has('townpanchayat'))
{{ $errors->first('townpanchayat') }}
@endif {{ trans('cruds.posting.fields.townpanchayat_helper') }}
@if($errors->has('townvattam'))
{{ $errors->first('townvattam') }}
@endif {{ trans('cruds.posting.fields.townvattam_helper') }}
@if($errors->has('municipality'))
{{ $errors->first('municipality') }}
@endif {{ trans('cruds.posting.fields.municipality_helper') }}
@if($errors->has('municipalityvattam'))
{{ $errors->first('municipalityvattam') }}
@endif {{ trans('cruds.posting.fields.municipalityvattam_helper') }}
@if($errors->has('metropolitan'))
{{ $errors->first('metropolitan') }}
@endif {{ trans('cruds.posting.fields.metropolitan_helper') }}
@if($errors->has('area'))
{{ $errors->first('area') }}
@endif {{ trans('cruds.posting.fields.area_helper') }}
@if($errors->has('metrovattam'))
{{ $errors->first('metrovattam') }}
@endif {{ trans('cruds.posting.fields.metrovattam_helper') }}
@if($errors->has('assemblys'))
{{ $errors->first('assemblys') }}
@endif {{ trans('cruds.posting.fields.assemblys_helper') }}
@if($errors->has('facebook'))
{{ $errors->first('facebook') }}
@endif {{ trans('cruds.posting.fields.facebook_helper') }}
@if($errors->has('twitter'))
{{ $errors->first('twitter') }}
@endif {{ trans('cruds.posting.fields.twitter_helper') }}
@if($errors->has('whatsapp_number'))
{{ $errors->first('whatsapp_number') }}
@endif {{ trans('cruds.posting.fields.whatsapp_number_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.posting.fields.email_helper') }}
@if($errors->has('youtube_channel'))
{{ $errors->first('youtube_channel') }}
@endif {{ trans('cruds.posting.fields.youtube_channel_helper') }}
@if($errors->has('instagram'))
{{ $errors->first('instagram') }}
@endif {{ trans('cruds.posting.fields.instagram_helper') }}
@foreach(App\Models\Posting::GENDER_RADIO as $key => $label)
@endforeach @if($errors->has('gender'))
{{ $errors->first('gender') }}
@endif {{ trans('cruds.posting.fields.gender_helper') }}
@if($errors->has('blood_group'))
{{ $errors->first('blood_group') }}
@endif {{ trans('cruds.posting.fields.blood_group_helper') }}
@if($errors->has('dob'))
{{ $errors->first('dob') }}
@endif {{ trans('cruds.posting.fields.dob_helper') }}
@if($errors->has('mother'))
{{ $errors->first('mother') }}
@endif {{ trans('cruds.posting.fields.mother_helper') }}
@if($errors->has('father'))
{{ $errors->first('father') }}
@endif {{ trans('cruds.posting.fields.father_helper') }}
@foreach(App\Models\Posting::MARRITAL_STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('marrital_status'))
{{ $errors->first('marrital_status') }}
@endif {{ trans('cruds.posting.fields.marrital_status_helper') }}
@if($errors->has('husband_wife_name'))
{{ $errors->first('husband_wife_name') }}
@endif {{ trans('cruds.posting.fields.husband_wife_name_helper') }}
@if($errors->has('education'))
{{ $errors->first('education') }}
@endif {{ trans('cruds.posting.fields.education_helper') }}
@if($errors->has('profession'))
{{ $errors->first('profession') }}
@endif {{ trans('cruds.posting.fields.profession_helper') }}
@if($errors->has('join_date'))
{{ $errors->first('join_date') }}
@endif {{ trans('cruds.posting.fields.join_date_helper') }}
@if($errors->has('permanent_address'))
{{ $errors->first('permanent_address') }}
@endif {{ trans('cruds.posting.fields.permanent_address_helper') }}
@if($errors->has('communication_address'))
{{ $errors->first('communication_address') }}
@endif {{ trans('cruds.posting.fields.communication_address_helper') }}
@foreach(App\Models\Posting::SOCIAL_CATEGORY_RADIO as $key => $label)
@endforeach @if($errors->has('social_category'))
{{ $errors->first('social_category') }}
@endif {{ trans('cruds.posting.fields.social_category_helper') }}
@if($errors->has('notes'))
{{ $errors->first('notes') }}
@endif {{ trans('cruds.posting.fields.notes_helper') }}
@if($errors->has('photo'))
{{ $errors->first('photo') }}
@endif {{ trans('cruds.posting.fields.photo_helper') }}
@endsection @section('scripts') @endsection