@extends('layouts.admin') @section('title', 'Editar Agencia - ' . $agency->name) @section('content')

Editar Agencia: {{ $agency->name }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

Haz clic para cambiar el logo

Formatos: JPG, PNG, GIF (Max 2MB)

@if($agency->logo && str_starts_with($agency->logo, 'data:image')) Logo actual @elseif($agency->logo_url) Logo actual @endif
Coordenadas: -, -
Volver al listado
@if(config('services.google.maps_api_key')) @else @endif @endsection