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