@extends('dashboard.layouts.master') @section('content')

{{$settings->first()->section}}

@if($errors->any())
    @foreach($errors->all() as $error)
  1. {{$error}}
  2. @endforeach
@endif @if($success = session('success'))
{{$success}}
@endif
@csrf
@foreach($settings as $setting) @if($setting->type == 'text')
@endif @if($setting->type == 'url')
@endif @if($setting->type == 'email')
@endif @if($setting->type == 'number')
@endif @if($setting->type == 'textarea')
@endif @if($setting->type == 'file')
@endif @if($setting->type == 'checkbox')
key) ? 'checked':''}} class="" name="{{$setting->key}}"/>
@endif @endforeach
@endsection @push('js') @endpush