@extends('layouts.app') @section('form-title') {{ __('Edit google cloude services') }} @endsection @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
@if($errors->has('url_application'))

{{ $errors->first('url_application') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('gcs_password'))

{{ $errors->first('gcs_password') }}

@endif
@if($errors->has('name_acc_owner'))

{{ $errors->first('name_acc_owner') }}

@endif
@if($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
{{-- Edit section ends --}}
@endsection