@extends('layouts/app') @section('content')

Update branch

@if(Session::has('error'))
Errors!
@foreach(Session::get('error') as $err) {{ $err }}
@endforeach @php Session::forget('error'); @endphp
@endif
@csrf
* @if ($errors->has('code')) {{ $errors->first('code') }} @endif
* @if ($errors->has('description')) {{ $errors->first('description') }} @endif
* @if ($errors->has('company_no')) {{ $errors->first('company_no') }} @endif
* @if ($errors->has('report_prefix')) {{ $errors->first('report_prefix') }} @endif
@if ($errors->has('phone_no')) {{ $errors->first('phone_no') }} @endif
@if ($errors->has('contact_person')) {{ $errors->first('contact_person') }} @endif
@if ($errors->has('contact_email')) {{ $errors->first('contact_email') }} @endif
@if ($errors->has('counter_limit')) {{ $errors->first('counter_limit') }} @endif
* @if ($errors->has('address')) {{ $errors->first('address') }} @endif
* @php $region = Config('config.region.value'); @endphp @if ($errors->has('region')) {{ $errors->first('region') }} @endif
@if (Auth::user()->can('UPDATE_BRANCH')) @if ($errors->has('active')) {{ $errors->first('active') }} @endif @else @endif
@if ($errors->has('tax_rate')) {{ $errors->first('tax_rate') }} @endif
@if ($errors->has('effective_date')) {{ $errors->first('effective_date') }} @endif
@endsection