@extends('admin.layouts.layout') @section('content')
@if(empty($editAdminSettingsData[0]->id))
@else @endif @csrf
General Setting
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('phone_one'))
{{ $errors->first('phone_one') }}
@endif
@if ($errors->has('phone_two'))
{{ $errors->first('phone_two') }}
@endif
@if ($errors->has('whatsapp'))
{{ $errors->first('whatsapp') }}
@endif
{{ !empty($editAdminSettingsData[0]->address_one) ? $editAdminSettingsData[0]->address_one : '' }}
@if ($errors->has('address_one'))
{{ $errors->first('address_one') }}
@endif
{{ !empty($editAdminSettingsData[0]->address_two) ? $editAdminSettingsData[0]->address_two : '' }}
@if ($errors->has('address_two'))
{{ $errors->first('address_two') }}
@endif
Select Country
@if(!empty($getCountry)) @foreach($getCountry as $key => $country)
{{ $country->name }}
@endforeach @endif
@if ($errors->has('postsecondaryid'))
{{ $errors->first('postsecondaryid') }}
@endif
Select State
@if(!empty($getStates)) @foreach($getStates as $key => $states)
{{ $states->name }}
@endforeach @endif
@if ($errors->has('postsecondaryid'))
{{ $errors->first('postsecondaryid') }}
@endif
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('pincode'))
{{ $errors->first('pincode') }}
@endif
Payment Setting
@if ($errors->has('processing_fees'))
{{ $errors->first('processing_fees') }}
@endif
Yes, I want to receive all mail notification, alerts form uniwolc
@if ($errors->has('preference'))
{{ $errors->first('preference') }}
@endif
Update
@endsection