@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title]) {{ html()->modelForm($setting, 'POST')->route('setting.store')->class(['needs-validation'])->attributes(['enctype=multipart/form-data'])->open() }}
{{ html()->label('Name')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Your Company Name') }}
{{ html()->label('Email')->class('form-label') }} {{ html()->email('email')->class('form-control')->placeholder('Email Address') }}
{{ html()->label('Mobile')->class('form-label') }} {{ html()->text('mobile')->class('form-control')->placeholder('Mobile Number') }}
{{ html()->label('Phone')->class('form-label') }} {{ html()->text('phone')->class('form-control')->placeholder('Phone') }}
{{ html()->label('Profit Margin')->class('form-label') }} {{ html()->text('margin')->class('form-control')->placeholder('Profit Margin') }}
{{ html()->label('Zip code')->class('form-label') }} {{ html()->text('zip_code')->class('form-control')->placeholder('Zip Code') }}
{{ html()->label('Address')->class('form-label') }} {{ html()->text('address')->class('form-control')->placeholder('Address') }}
{{ html()->label('Google Map')->class('form-label') }} {{ html()->text('google_map')->class('form-control')->placeholder('Google Map Link') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control ckeditor-classic') }}
{{ html()->label('Logo')->class('form-label') }} {{ html()->file('logo_pic')->class('form-control dropify')->attributes([ 'data-default-file' => asset('storage/' . setting('logo_pic')), 'data-height' => 200, ]) }}
{{ html()->form()->close() }}
@endsection @push('js') @endpush