@extends('layouts/layoutMaster') @section('title', 'Perfil del proveedor') @section('vendor-style') @vite(['resources/assets/vendor/libs/select2/select2.scss']) @endsection @section('page-style') @endsection @section('vendor-script') @vite(['resources/assets/vendor/libs/select2/select2.js']) @endsection @section('content') @php $publicHandle = $profile->slug ?: 'm-xxxxxxx'; $displayName = $profile->avatarDisplayName(); $avatarInitials = $profile->avatarInitials(); $canManageProfilePhoto = $profile->canManageProfilePhoto(); $showProfilePhoto = $profile->shouldShowProfilePhoto(); $canManageProfileCover = $profile->canManageProfileCover(); $showProfileCover = $profile->shouldShowProfileCover(); $publicProfileUrl = \Illuminate\Support\Facades\Route::has('mariachi.provider.public.show') && filled($profile->slug) ? route('mariachi.provider.public.show', ['handle' => $profile->slug]) : null; @endphp @include('content.mariachi.partials.account-settings-nav') @if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
Hay errores de validacion.
@endif
@csrf @method('PATCH')
@if($showProfileCover) Portada del perfil @else Portada disponible con verificacion @endif
@if($showProfilePhoto) Foto del proveedor @else
{{ $avatarInitials }}
@endif

{{ $displayName }}

@if($publicProfileUrl) @{{ $publicHandle }} @else @{{ $publicHandle }} @endif
@if($publicProfileUrl) @endif
@if($canManageProfilePhoto || $canManageProfileCover)
@if($canManageProfilePhoto)

Formatos: JPG, PNG o WEBP. Máximo 3 MB. La convertimos a WEBP y la dejamos lista en 512 x 512 para que cargue rápido.

@endif @if($canManageProfileCover)

Formatos: JPG, PNG o WEBP. Máximo 5 MB por imagen. Recomendado: 1200–1600 px de ancho. Nosotros optimizamos automáticamente la imagen para que cargue rápido.

@endif
@endif
Datos del proveedor
@error('phone_country_iso2')
{{ $message }}
@enderror
@error('phone_number')
{{ $message }}
@enderror
Resume lo esencial del grupo en una descripcion breve y clara.
@endsection