@extends('layouts.app') @section('title', __('app.settings')) @section('content')
@csrf @method('PUT') @foreach ([ 'showroom_name' => 'text', 'address' => 'text', 'phone' => 'text', 'email' => 'email', 'website' => 'text', 'currency_symbol' => 'text', 'invoice_prefix' => 'text', ] as $field => $type)
@error($field)

{{ $message }}

@enderror
@endforeach
@endsection