@extends('layouts.app') @section('form-title') {{ __('Organisation') }} @endsection @section('breadcrumb') @endsection @section('content') @include('partials.modals.maps');
@csrf @method('PUT')
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if($errors->has('street'))

{{ $errors->first('street') }}

@endif
@if($errors->has('zip'))

{{ $errors->first('zip') }}

@endif
{!! countries(old('country',$setting->country_id)) !!} @if($errors->has('country'))

{{ $errors->first('country') }}

@endif
@if($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
@if($errors->has('website'))

{{ $errors->first('website') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
{!! languages('language', old('language', $setting->language)) !!} @if($errors->has('language'))

{{ $errors->first('language') }}

@endif
@if($errors->has('logo'))

{{ $errors->first('logo') }}

@endif
@if($setting->logo === 'logo-blue.png') organisation logo @else organisation logo @endif
{{ __('Recommended size: 64x64 pixels and must be in PNG format') }} @if($errors->has('favicon'))

{{ $errors->first('favicon') }}

@endif
@if(!empty($setting->favicon))
organisation favicon
@endif
@endsection @push('child-scripts') @endpush