@extends('layouts.dashboard') @section('title', 'تعديل الفرع') @section('content')

🏢 تعديل الفرع: {{ $branch->name }}

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('city')

{{ $message }}

@enderror
@error('address')

{{ $message }}

@enderror
@error('phone')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('latitude')

{{ $message }}

@enderror
@error('longitude')

{{ $message }}

@enderror
@php $days = [ 'sun' => 'الأحد', 'mon' => 'الإثنين', 'tue' => 'الثلاثاء', 'wed' => 'الأربعاء', 'thu' => 'الخميس', 'fri' => 'الجمعة', 'sat' => 'السبت', ]; $savedHours = is_array($branch->working_hours) ? $branch->working_hours : (json_decode($branch->working_hours, true) ?? []); @endphp @foreach($days as $key => $label)
{{ $label }}
@endforeach
active ? 'checked' : '' }} class="rounded border-gray-300 text-emerald-600 focus:ring-emerald-500">
إلغاء
@endsection