@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=='timezone')
@endif @if($row->key=='date_format')
@endif @if($row->key=='date_time_format')
@endif @if($row->key=='time_format')
@endif @if($row->key=='default_tax')
@endif @if($row->key=='shipping_charge')
@endif @if($row->key=='minimum_order_value')
@endif @endforeach
{{-- {!! Form::close() !!} --}}
@endsection