@extends('layouts.app') @section('content')
{{ isset($recaptcha) ? 'Modifier un recaptcha' : 'Créer un recaptcha' }}
@include('components.alert_success')
{{ csrf_field() }} {{ isset($recaptcha) ? method_field('PUT') : '' }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('key'))
{{ $errors->first('key') }}
@endif
@if ($errors->has('secret'))
{{ $errors->first('secret') }}
@endif
@endsection