cotizaweb/resources/views/permissions/create.blade.php
jesusfb 161fcee049
Some checks are pending
Deploy to EC2 cotiza / deploy (push) Waiting to run
first commit
2026-04-24 12:53:27 -07:00

20 lines
520 B
PHP

@extends('layouts.app')
@section('content')
<div class="container">
<h2>Nuevo Permiso</h2>
<form action="{{ route('permissions.store') }}" method="POST">
@csrf
<div class="mb-3">
<label>Nombre del permiso</label>
<input type="text" name="name" class="form-control" required>
</div>
<button class="btn btn-success">Guardar</button>
<a href="{{ route('permissions.index') }}" class="btn btn-secondary">Cancelar</a>
</form>
</div>
@endsection