@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')
status == 1) {{ 'checked' }} @endif>Ativo status == 0) {{ 'checked' }} @endif>Inativo
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection