@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Editando Opção de Pagamento') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content') @if ($message = Session::get('success')) × {{ $message }} @endif @if (count($errors) > 0) Ops! Ouve algum problema. @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif Cadastro Opção de Pagamento @csrf @method('PUT') Conta Selecione @foreach ($banks as $item) bank_id == $item->id) {{ 'selected' }} @endif >{{ $item->name }} @endforeach Nome Status status == 1) {{ 'checked' }} @endif>Ativo status == 0) {{ 'checked' }} @endif>Inativo Juros Taxas Mora Parcelamento Observação Salvar @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection