@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=='facebook_url')
@endif @if($row->key=='twitter_url')
@endif @if($row->key=='instagram_url')
@endif @if($row->key=='pinterest_url')
@endif @if($row->key=='snapchat_url')
@endif @endforeach
{!! Form::close() !!}
@endsection