@extends('layouts.app') @section('content')
{!! Form::model(null, ['method' => 'PATCH','enctype'=>'multipart/form-data', 'url' => ['admin/settings/update']]) !!} @csrf
@foreach ($data as $row) @if($row->key=='youtube_video_url')
@endif @if($row->key=='apple_download_url')
@endif @if($row->key=='android_download_url')
@endif @if($row->key=='contact_phone')
@endif @if($row->key=='contact_email')
@endif @if($row->key=='contact_address')
@endif @if($row->key=='contact_support_phone')
@endif @if($row->key=='site_title')
@endif @if($row->key=='site_author')
@endif @if($row->key=='site_description')
@endif @if($row->key=='site_keyword')
@endif @if($row->key=='google_analysis')
@endif @if($row->key=='website_logo')
@if($row->value!='') @else @endif
@endif @if($row->key=='about_product')
@if($row->value!='') About Product @else About Product @endif
@endif @if($row->key=='mobile_image')
@if($row->value!='') Mobile Image @else Mobile Image @endif
@endif @if($row->key=='icon_1')
@if($row->value!='') Website Icon 1 @else Website Icon 1 @endif
@endif @if($row->key=='icon_2')
@if($row->value!='') Website Icon 2 @else Website Icon 2 @endif
@endif @if($row->key=='icon_3')
@if($row->value!='') Website Icon 3 @else Website Icon 3 @endif
@endif @if($row->key=='icon_4')
@if($row->value!='') Website Icon 4 @else Website Icon 4 @endif
@endif @endforeach
{!! Form::close() !!}
@endsection