@extends('layouts.master') @section('title') {{ __('guidance') }} @endsection @section('content')
@if (Auth::user()->can('guidance-create'))

{{ __('create') . ' ' . __('guidance') }}

@csrf
{!! Form::text('name', null, ['required', 'placeholder' => __('name'), 'class' => 'form-control', 'maxlength' => '30']) !!}
{!! Form::text('link', null, ['required', 'placeholder' => __('link'), 'class' => 'form-control']) !!}
@endif @if (Auth::user()->can('guidance-list'))

{{ __('list') . ' ' . __('guidance') }}

@if (Auth::user()->can('guidance-edit') || Auth::user()->can('guidance-delete')) @endif
{{ __('id') }} {{ __('no.') }} {{ __('name') }} {{ __('link') }}{{ __('action') }}
@endif
@endsection