@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.contact.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.contact.fields.name_helper') }}
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif {{ trans('cruds.contact.fields.phone_number_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.contact.fields.email_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.contact.fields.address_helper') }}
@if($errors->has('district'))
{{ $errors->first('district') }}
@endif {{ trans('cruds.contact.fields.district_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.contact.fields.city_helper') }}
@if($errors->has('province'))
{{ $errors->first('province') }}
@endif {{ trans('cruds.contact.fields.province_helper') }}
@if($errors->has('postal_code'))
{{ $errors->first('postal_code') }}
@endif {{ trans('cruds.contact.fields.postal_code_helper') }}
@if($errors->has('lat'))
{{ $errors->first('lat') }}
@endif {{ trans('cruds.contact.fields.lat_helper') }}
@if($errors->has('long'))
{{ $errors->first('long') }}
@endif {{ trans('cruds.contact.fields.long_helper') }}
@endsection