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

{{__('texte.banks_arr.edit.edit_bank')}}

{{ method_field('PATCH') }} {{ csrf_field() }} @permission('bank-form-name-read')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@endpermission @permission('bank-form-bank_code-read')
@if ($errors->has('bank_code')) {{ $errors->first('bank_code') }} @endif
@endpermission @permission('bank-form-active-read')
@if ($errors->has('active')) {{ $errors->first('active') }} @endif
@endpermission
@endsection